Files
Epicure/apps/web/app/admin/invites/page.tsx
T
Arnaud 212d6f7335 fix: browser tab title should always just say "Epicure"
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>
2026-07-09 14:58:03 +02:00

35 lines
1.0 KiB
TypeScript

import type { Metadata } from "next";
import { listInvites } from "@/lib/invites";
import { InvitesManager } from "@/components/admin/invites-manager";
export const metadata: Metadata = {};
export default async function AdminInvitesPage() {
const invites = await listInvites();
const appUrl = process.env["BETTER_AUTH_URL"] ?? "http://localhost:3000";
return (
<div className="space-y-6">
<div>
<h1 className="text-2xl font-bold tracking-tight">Invites</h1>
<p className="text-muted-foreground text-sm mt-1">
Generate shareable signup links. Required when signups are disabled in{" "}
<span className="font-medium">Settings</span>.
</p>
</div>
<InvitesManager
invites={invites.map((i) => ({
id: i.id,
token: i.token,
email: i.email,
role: i.role,
tier: i.tier,
createdAt: i.createdAt.toISOString(),
expiresAt: i.expiresAt?.toISOString() ?? null,
}))}
appUrl={appUrl}
/>
</div>
);
}