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