Add: LoginPage

This commit is contained in:
Aroy-Art 2025-03-13 10:33:19 +01:00
parent b43d4c8612
commit a848667152
Signed by: Aroy
GPG key ID: 583642324A1D2070

View file

@ -0,0 +1,27 @@
import { LoginForm } from "@/components/partials/LoginForm"
import { Helmet } from 'react-helmet-async'
export default function LoginPage() {
return (
<>
<Helmet>
<title>Login | {__SITE_NAME__}</title>
</Helmet>
<div className="relative flex min-h-svh flex-col items-center justify-center bg-zinc-300 dark:bg-gray-800 p-6 md:p-10">
{/* Background Image */}
<img
src="/images/login-bg-2560x1440.jpg"
alt="Background"
className="absolute inset-0 w-full h-full object-cover brightness-[0.6]"
/>
{/* Content */}
<div className="relative z-10 w-full max-w-sm md:max-w-3xl">
<LoginForm />
</div>
</div>
</>
)
}