ca-grow-ops-manager/frontend/src/pages/HomePage.tsx
fullsizemalt 71e58dd4c7
Some checks are pending
Deploy to Production / deploy (push) Waiting to run
Test / backend-test (push) Waiting to run
Test / frontend-test (push) Waiting to run
feat: Linear-inspired UI redesign with Space Grotesk headlines
- 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
2025-12-12 14:29:47 -08:00

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