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.tsx11
1 files changed, 11 insertions, 0 deletions
diff --git a/web/app/bookmarks/page.tsx b/web/app/bookmarks/page.tsx
new file mode 100644
index 00000000..f0efa2e4
--- /dev/null
+++ b/web/app/bookmarks/page.tsx
@@ -0,0 +1,11 @@
+import AddLink from "./components/AddLink";
+import LinksGrid from "./components/LinksGrid";
+
+export default async function Bookmarks() {
+ return (
+ <>
+ <AddLink />
+ <LinksGrid />
+ </>
+ );
+}