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>
56 lines
1.8 KiB
TypeScript
56 lines
1.8 KiB
TypeScript
import type { Metadata } from "next";
|
|
import { headers } from "next/headers";
|
|
import Link from "next/link";
|
|
import { ExternalLink } from "lucide-react";
|
|
import { auth } from "@/lib/auth/server";
|
|
import { db, apiKeys, eq } from "@epicure/db";
|
|
import { ApiKeysManager } from "@/components/settings/api-keys-manager";
|
|
import { getMessages } from "@/lib/i18n/server";
|
|
|
|
export const metadata: Metadata = {};
|
|
|
|
export default async function ApiKeysPage() {
|
|
const session = await auth.api.getSession({ headers: await headers() });
|
|
if (!session) return null;
|
|
const m = getMessages((session.user as { locale?: string }).locale);
|
|
|
|
const keys = await db
|
|
.select({
|
|
id: apiKeys.id,
|
|
name: apiKeys.name,
|
|
lastUsedAt: apiKeys.lastUsedAt,
|
|
createdAt: apiKeys.createdAt,
|
|
})
|
|
.from(apiKeys)
|
|
.where(eq(apiKeys.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.apiKeysPage.title}</h2>
|
|
<p className="text-sm text-muted-foreground mt-1">
|
|
{m.settings.apiKeysPage.description}
|
|
</p>
|
|
<Link
|
|
href="/docs"
|
|
target="_blank"
|
|
className="inline-flex items-center gap-1 text-sm text-primary hover:underline mt-2"
|
|
>
|
|
<ExternalLink className="h-3.5 w-3.5" />
|
|
{m.settings.apiKeysPage.docsLink}
|
|
</Link>
|
|
</div>
|
|
<ApiKeysManager
|
|
initialKeys={keys.map((k) => ({
|
|
id: k.id,
|
|
name: k.name,
|
|
lastUsedAt: k.lastUsedAt ? k.lastUsedAt.toISOString() : null,
|
|
createdAt: k.createdAt.toISOString(),
|
|
}))}
|
|
/>
|
|
</section>
|
|
</div>
|
|
);
|
|
}
|