212d6f7335
Root layout used title.template ("%s | Epicure") and 38 pages set
their own title, producing "Recipes | Epicure", "Messages — Epicure",
etc. Drop the template, set a flat "Epicure" default, and clear every
page's title override so they all inherit it.
Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
50 lines
1.7 KiB
TypeScript
50 lines
1.7 KiB
TypeScript
import type { Metadata } from "next";
|
|
import { headers } from "next/headers";
|
|
import { auth } from "@/lib/auth/server";
|
|
import { db, userAiKeys, userModelPrefs, eq } from "@epicure/db";
|
|
import { ByokManager } from "@/components/settings/byok-manager";
|
|
import { ModelPrefsForm } from "@/components/settings/model-prefs-form";
|
|
import { getMessages } from "@/lib/i18n/server";
|
|
|
|
export const metadata: Metadata = {};
|
|
|
|
export default async function AiSettingsPage() {
|
|
const session = await auth.api.getSession({ headers: await headers() });
|
|
if (!session) return null;
|
|
const m = getMessages((session.user as { locale?: string }).locale);
|
|
|
|
const [aiKeys, modelPrefs] = await Promise.all([
|
|
db.query.userAiKeys.findMany({
|
|
where: eq(userAiKeys.userId, session.user.id),
|
|
columns: { provider: true },
|
|
}),
|
|
db.query.userModelPrefs.findFirst({
|
|
where: eq(userModelPrefs.userId, session.user.id),
|
|
}),
|
|
]);
|
|
|
|
return (
|
|
<div className="space-y-8">
|
|
<section className="rounded-xl border p-6 space-y-4">
|
|
<div>
|
|
<h2 className="font-semibold text-lg">{m.settings.byok.title}</h2>
|
|
<p className="text-sm text-muted-foreground mt-1">
|
|
{m.settings.byok.description}
|
|
</p>
|
|
</div>
|
|
<ByokManager initialKeys={aiKeys.map((k) => k.provider)} />
|
|
</section>
|
|
|
|
<section className="rounded-xl border p-6 space-y-4">
|
|
<div>
|
|
<h2 className="font-semibold text-lg">{m.settings.modelPrefs.title}</h2>
|
|
<p className="text-sm text-muted-foreground mt-1">
|
|
{m.settings.modelPrefs.description}
|
|
</p>
|
|
</div>
|
|
<ModelPrefsForm initialPrefs={modelPrefs ?? null} />
|
|
</section>
|
|
</div>
|
|
);
|
|
}
|