diff options
| author | MohamedBassem <me@mbassem.com> | 2024-02-07 22:12:18 +0000 |
|---|---|---|
| committer | MohamedBassem <me@mbassem.com> | 2024-02-07 22:12:18 +0000 |
| commit | cdc05f85a6dc676e8af1227a56f65d6452488d82 (patch) | |
| tree | b3d1e133d5435e129637067749d0b7e6e55b6c01 /web/app/bookmarks/page.tsx | |
| parent | 8970b3a5375ccfd9b41c8a08722a2fc6bbbe3af9 (diff) | |
| download | karakeep-cdc05f85a6dc676e8af1227a56f65d6452488d82.tar.zst | |
[feature] Render tags in the link card
Diffstat (limited to 'web/app/bookmarks/page.tsx')
| -rw-r--r-- | web/app/bookmarks/page.tsx | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/web/app/bookmarks/page.tsx b/web/app/bookmarks/page.tsx index f0efa2e4..89a26122 100644 --- a/web/app/bookmarks/page.tsx +++ b/web/app/bookmarks/page.tsx @@ -1,5 +1,10 @@ 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 ( |
