theming, date, time localisation, additional features, seeding initial cleanup
This commit is contained in:
+5
-5
@@ -3,18 +3,18 @@ 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='min-h-screen bg-gradient-to-br from-blue-50 to-indigo-100 dark:from-gray-900 dark:to-gray-800 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>
|
||||
<h1 className='text-3xl font-bold text-foreground mb-2'>🏓 TT Booking</h1>
|
||||
<p className='text-muted-foreground'>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'>
|
||||
<span className='text-muted-foreground'>Don't have an account? </span>
|
||||
<Link href='/register' className='text-primary hover:text-primary/80 font-medium'>
|
||||
Sign up
|
||||
</Link>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user