32 lines
1.0 KiB
TypeScript
32 lines
1.0 KiB
TypeScript
|
|
import { Link } from 'react-router-dom';
|
||
|
|
|
||
|
|
export default function Home() {
|
||
|
|
return (
|
||
|
|
<div className="min-h-screen flex flex-col items-center justify-center bg-background px-4">
|
||
|
|
<div className="text-center max-w-2xl">
|
||
|
|
<h1 className="text-5xl font-bold text-primary mb-6">
|
||
|
|
Rentman Clone
|
||
|
|
</h1>
|
||
|
|
<p className="text-xl text-text-secondary mb-8">
|
||
|
|
A project-centric platform for rental and event industries.
|
||
|
|
Manage projects, equipment, crew, vehicles, and finances.
|
||
|
|
</p>
|
||
|
|
<div className="flex gap-4 justify-center">
|
||
|
|
<Link
|
||
|
|
to="/login"
|
||
|
|
className="px-6 py-3 bg-primary text-white rounded-lg hover:bg-primary-dark transition-colors"
|
||
|
|
>
|
||
|
|
Sign In
|
||
|
|
</Link>
|
||
|
|
<Link
|
||
|
|
to="/register"
|
||
|
|
className="px-6 py-3 border border-primary text-primary rounded-lg hover:bg-primary/10 transition-colors"
|
||
|
|
>
|
||
|
|
Create Account
|
||
|
|
</Link>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
);
|
||
|
|
}
|