25 lines
789 B
TypeScript
25 lines
789 B
TypeScript
import Link from 'next/link';
|
|
import { LoginForm } from '@/components/auth/LoginForm';
|
|
|
|
export default function LoginPage() {
|
|
return (
|
|
<div className='min-h-screen bg-gradient-to-br from-blue-50 to-indigo-100 flex items-center justify-center px-4'>
|
|
<div className='w-full max-w-md space-y-6'>
|
|
<div className='text-center'>
|
|
<h1 className='text-3xl font-bold text-gray-900 mb-2'>🏓 TT Booking</h1>
|
|
<p className='text-gray-600'>Professional table tennis court booking system</p>
|
|
</div>
|
|
|
|
<LoginForm />
|
|
|
|
<div className='text-center text-sm'>
|
|
<span className='text-gray-600'>Don't have an account? </span>
|
|
<Link href='/register' className='text-blue-600 hover:text-blue-800 font-medium'>
|
|
Sign up
|
|
</Link>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|