diff options
| author | MohamedBassem <me@mbassem.com> | 2024-02-08 02:16:51 +0000 |
|---|---|---|
| committer | MohamedBassem <me@mbassem.com> | 2024-02-08 02:23:29 +0000 |
| commit | 2659da517aeec0fe955422dee76f7de292f1a591 (patch) | |
| tree | 5150d69d2e5b70aea2cad6adefc6e2511d0d29da /web/app/dashboard/layout.tsx | |
| parent | 7344f167edae95b2edd984ec1ae0ef5359d1e028 (diff) | |
| download | karakeep-2659da517aeec0fe955422dee76f7de292f1a591.tar.zst | |
[feature] Introduce a sidebar
Diffstat (limited to 'web/app/dashboard/layout.tsx')
| -rw-r--r-- | web/app/dashboard/layout.tsx | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/web/app/dashboard/layout.tsx b/web/app/dashboard/layout.tsx new file mode 100644 index 00000000..9b21271e --- /dev/null +++ b/web/app/dashboard/layout.tsx @@ -0,0 +1,15 @@ +import Bookmarks from "@/app/dashboard/bookmarks/page"; +import Sidebar from "@/app/dashboard/components/Sidebar"; + +export default async function Dashboard() { + return ( + <div className="flex w-screen h-screen"> + <div className="flex-none"> + <Sidebar /> + </div> + <div className="flex-1 bg-gray-100"> + <Bookmarks /> + </div> + </div> + ); +} |
