aboutsummaryrefslogtreecommitdiffstats
path: root/web/app/bookmarks/page.tsx
diff options
context:
space:
mode:
authorMohamedBassem <me@mbassem.com>2024-02-08 02:16:51 +0000
committerMohamedBassem <me@mbassem.com>2024-02-08 02:23:29 +0000
commit2659da517aeec0fe955422dee76f7de292f1a591 (patch)
tree5150d69d2e5b70aea2cad6adefc6e2511d0d29da /web/app/bookmarks/page.tsx
parent7344f167edae95b2edd984ec1ae0ef5359d1e028 (diff)
downloadkarakeep-2659da517aeec0fe955422dee76f7de292f1a591.tar.zst
[feature] Introduce a sidebar
Diffstat (limited to 'web/app/bookmarks/page.tsx')
-rw-r--r--web/app/bookmarks/page.tsx16
1 files changed, 0 insertions, 16 deletions
diff --git a/web/app/bookmarks/page.tsx b/web/app/bookmarks/page.tsx
deleted file mode 100644
index 89a26122..00000000
--- a/web/app/bookmarks/page.tsx
+++ /dev/null
@@ -1,16 +0,0 @@
-import AddLink from "./components/AddLink";
-import LinksGrid from "./components/LinksGrid";
-import type { Metadata } from "next";
-
-export const metadata: Metadata = {
- title: "Remember - Bookmarks",
-};
-
-export default async function Bookmarks() {
- return (
- <>
- <AddLink />
- <LinksGrid />
- </>
- );
-}