aboutsummaryrefslogtreecommitdiffstats
path: root/apps/web/app/settings/broken-links/layout.tsx
blob: 45f3dadf3f01f464aa9e9011fa38c94bb9abe238 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import type { Metadata } from "next";
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("settings.broken_links.broken_links")} | Karakeep`,
  };
}

export default function BrokenLinksLayout({
  children,
}: {
  children: React.ReactNode;
}) {
  return <>{children}</>;
}