Files
rentman-clone/frontend/src/pages/Home.tsx
T
Agent Zero 7f7da15965 Initial commit: Rentman Clone - Phase 0-6 (T001-T023)
Completed:
- Phase 0: Project Setup (T001-T003) - Docker Compose, FastAPI skeleton, React SPA
- Phase 1: Auth System (T004-T008) - DB models, JWT auth, RBAC middleware, user management
- Phase 2: Contacts & Tags (T009-T011) - CRUD API + UI
- Phase 3: Equipment Catalog (T012-T014) - Models, API, UI with barcode/QR
- Phase 4: Crew Management (T015-T017) - Models, availability, UI
- Phase 5: Vehicle Fleet (T018-T020) - Models, assignments, UI
- Phase 6: Projects (T021-T023) - Project hierarchy models, CRUD API, list/detail UI
2026-05-31 20:36:42 +00:00

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>
);
}