Files
Admin b3c6999218 Fix SSL SAN cert + React hydration #423
- SAN cert covers all 5 PWA domains (tasks,cal,plans,goals,chat)
- i18n hydration: SSR uses cs default, localStorage after mount
- Matches ThemeProvider pattern

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-03-29 14:56:25 +00:00

25 lines
779 B
TypeScript

"use client";
import Link from "next/link";
import { useTranslation } from "@/lib/i18n";
export default function ForgotPasswordPage() {
const { t } = useTranslation();
return (
<div className="min-h-[70vh] flex items-center justify-center">
<div className="w-full max-w-sm">
<div className="bg-white dark:bg-gray-900 border border-gray-200 dark:border-gray-700 rounded-2xl p-6 shadow-sm text-center">
<h1 className="text-2xl font-bold mb-4">{t("auth.forgotPassword")}</h1>
<p className="text-muted mb-6">
{t("forgotPassword.description")}
</p>
<Link href="/login" className="text-blue-600 hover:underline">
{t("common.back")}
</Link>
</div>
</div>
</div>
);
}