Files
twotalesanimation 81ad7e4ea9 Initial commit
2026-06-11 10:46:09 +02:00

27 lines
775 B
TypeScript

import { GalleryVerticalEnd } from "lucide-react"
import { LoginForm } from "@/components/login-form"
export default function LoginPage() {
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">
<a href="#" className="flex items-center gap-2 self-center font-medium">
<img
src="/icon.svg" // put your svg here
alt=""
className="size-5" // same sizing as your icon
/>
OW ANIMATION ARTS VAULT
</a>
<img
src="/vault.png"
alt="Vault"
className="w-full"
/>
<LoginForm />
</div>
</div>
)
}