Dental Care

This commit is contained in:
Iliyan Angelov
2025-11-16 14:29:51 +02:00
commit 39077550ef
194 changed files with 43197 additions and 0 deletions

View File

@@ -0,0 +1,26 @@
import Image from "next/image";
import Link from "next/link";
import { ForgotPasswordForm } from "@/app/(auth)/forgot-password/forgot-password-form";
export default function ForgotPasswordPage() {
return (
<div className="bg-muted flex min-h-svh flex-col items-center justify-center gap-6 p-6 md:p-10">
<div className="flex w-full max-w-sm flex-col gap-6">
<Link href="/" className="flex items-center gap-2 self-center font-medium">
<div className="bg-primary text-primary-foreground flex size-8 items-center justify-center rounded-md p-1">
<Image
width={24}
height={24}
src={"/tooth.svg"}
alt="Dental U Care Logo"
priority
/>
</div>
<span>Dental U Care</span>
</Link>
<ForgotPasswordForm />
</div>
</div>
);
}