- Complete UI refactor with charcoal/bone color palette - Add Space Grotesk font for headlines, Inter for body - Update all 24+ pages with new design system - Add LinearPrimitives reusable components - Improve dark mode support throughout - Add subtle micro-animations and transitions
18 lines
700 B
TypeScript
18 lines
700 B
TypeScript
import { Link } from "react-router-dom";
|
|
|
|
export default function HomePage() {
|
|
return (
|
|
<div className="flex flex-col items-center justify-center min-h-screen bg-primary">
|
|
<h1 className="text-3xl font-semibold text-primary mb-3">CA Grow Ops Manager</h1>
|
|
<p className="text-secondary mb-8">Secure management for distributed operations.</p>
|
|
<div className="flex gap-3">
|
|
<Link to="/login" className="btn btn-primary">
|
|
Login
|
|
</Link>
|
|
<Link to="/dashboard" className="btn btn-secondary">
|
|
Dashboard Demo
|
|
</Link>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|