Skip to content
Snippets Groups Projects
page.tsx 733 B
Newer Older
Yusuf Akgül's avatar
Yusuf Akgül committed
import { LoginForm } from '@/components/auth-login-form'
import Link from 'next/link'

export default function LoginPage() {
Yusuf Akgül's avatar
Yusuf Akgül committed
    return (
Yusuf Akgül's avatar
Yusuf Akgül committed
        <div className="h-screen w-screen flex justify-center items-center bg-slate-100">
Caner's avatar
Caner committed
            <div className="sm:shadow-xl px-8 pb-8 pt-12 sm:bg-black rounded-xl space-y-12">
Yusuf Akgül's avatar
Yusuf Akgül committed
                <h1 className="font-semibold text-2xl">Login</h1>
                <LoginForm />
                <p className="text-center">
                    Need to create an account?{' '}
                    <Link className="text-indigo-500 hover:underline" href="/signup">
                        Create Account
                    </Link>{' '}
                </p>
            </div>
Yusuf Akgül's avatar
Yusuf Akgül committed
        </div>
Yusuf Akgül's avatar
Yusuf Akgül committed
    )
Yusuf Akgül's avatar
Yusuf Akgül committed
}