import Link from 'next/link'; import { Metadata } from 'next'; import React from 'react'; import ComponentsAuthLoginForm from '@/components/auth/components-auth-login-form'; type Props = {} const LoginPage = (props: Props) => { return (
{/* Background gradient layer */}
background gradient
{/* Background decorative objects */} left decor right decor {/* Centered card wrapper */}
{/* Inner card (glassmorphic effect) */}
{/* Header */}

Sign In

Enter your email and password to access your account.

{/* Login form */} {/* Footer link */}
Don’t have an account?{" "} SIGN UP
); }; export default LoginPage