import { AuthPageShell } from "@/components/auth/auth-page-shell"; import { getPublicBranding } from "@/server/branding/runtime"; import { resolvePublicLocale } from "@/server/i18n/resolver"; import { createTranslator } from "@/server/i18n/translator"; import Link from "next/link"; import { Alert, AlertDescription } from "poyraz-ui/molecules"; export const dynamic = "force-dynamic"; export default async function ForgotPasswordPage() { const branding = getPublicBranding(); const locale = await resolvePublicLocale(); const t = createTranslator(locale.locale, ["auth"]).t; return ( {t("auth.forgot.helper")} } secondaryAction={null} footer={ {t("auth.forgot.back")} } /> ); }