import { Button, PageHeader, SectionCard } from "@/components/ui"; import { getLocale, getTranslator } from "@/lib/i18n"; export default async function UnauthorizedPage() { const t = getTranslator(await getLocale()); return (

{t("pages", "unauthorized_desc")}

); }