Skip to content

Commit a577334

Browse files
committed
Add User Dashboard Page
1 parent e9f022b commit a577334

1 file changed

Lines changed: 30 additions & 0 deletions

File tree

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
// src/pages/organization_dashboard.tsx (Update the import path)
2+
3+
import Head from "next/head";
4+
// The Header component is now one directory level up from 'pages',
5+
// so the path is '../components/Header'
6+
//import Header from '../components/Header';
7+
8+
const UserDashboardPage = () => {
9+
return (
10+
<>
11+
<Head>
12+
<title>User Dashboard</title>
13+
</Head>
14+
<div className="dashboard-container">
15+
{/* 1. Navigation Bar */}
16+
{/* <Header /> */}
17+
18+
{/* 2. Main content wrapper */}
19+
<main className="dashboard-content">
20+
{/* Components for Statistics, Recent Activity, and Quick Actions */}
21+
<h1>Welcome to the User Dashboard!</h1>{" "}
22+
{/* Add a temporary header to confirm it works */}
23+
</main>
24+
</div>
25+
</>
26+
);
27+
};
28+
29+
// export to make the function available to other parts of the app
30+
export default UserDashboardPage;

0 commit comments

Comments
 (0)