blob: 603e9a0958d352bac3280ccc1a5063e8ae269a23 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
import type { Metadata } from "next";
import FeedSettings from "@/components/settings/FeedSettings";
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.feeds.rss_subscriptions")} | Karakeep`,
};
}
export default function FeedSettingsPage() {
return <FeedSettings />;
}
|