diff options
Diffstat (limited to 'apps/web/app/dashboard/archive/page.tsx')
| -rw-r--r-- | apps/web/app/dashboard/archive/page.tsx | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/apps/web/app/dashboard/archive/page.tsx b/apps/web/app/dashboard/archive/page.tsx index becb6a58..33a6e610 100644 --- a/apps/web/app/dashboard/archive/page.tsx +++ b/apps/web/app/dashboard/archive/page.tsx @@ -1,5 +1,15 @@ +import type { Metadata } from "next"; import Bookmarks from "@/components/dashboard/bookmarks/Bookmarks"; import InfoTooltip from "@/components/ui/info-tooltip"; +import { useTranslation } from "@/lib/i18n/server"; + +export async function generateMetadata(): Promise<Metadata> { + // oxlint-disable-next-line rules-of-hooks + const { t } = await useTranslation(); + return { + title: `${t("common.archive")} | Karakeep`, + }; +} function header() { return ( |
