aboutsummaryrefslogtreecommitdiffstats
path: root/web/app/bookmarks/page.tsx
diff options
context:
space:
mode:
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 />
- </>
- );
-}