diff --git a/.gitignore b/.gitignore index b45fcb9..b0482ff 100644 --- a/.gitignore +++ b/.gitignore @@ -36,4 +36,7 @@ yarn-error.log* next-env.d.ts # vscode -.vscode \ No newline at end of file +.vscode + +# pnpm-lock +pnpm-lock.yaml \ No newline at end of file diff --git a/app/dashboard/page.tsx b/app/dashboard/page.tsx index 5e2f781..aa498ab 100644 --- a/app/dashboard/page.tsx +++ b/app/dashboard/page.tsx @@ -1,11 +1,29 @@ -// app/dashboard.tsx +"use client"; + import React from "react"; const Dashboard: React.FC = () => { return ( -
-

Dashboard

-

The page after login

+
+ {/* Left Tool Bar */} + + + {/* Main Work Space */} +
+

Dashboard

+
+

TODO

+ {/* Add more Stuff here*/} +
+
); };