import Link from "next/link"; import { Button } from "~/components/ui/button"; import { AuthRedirect } from "~/components/AuthRedirect"; import { Card, CardContent } from "~/components/ui/card"; import { Badge } from "~/components/ui/badge"; import { Logo } from "~/components/branding/logo"; import { ArrowRight, Check, Zap, Shield, BarChart3, Rocket, } from "lucide-react"; import { brand } from "~/lib/branding"; export default function HomePage() { return (
{/* Blob Background for Homepage */}
{/* Navigation */} {/* Hero Section */}
Completely Free for Everyone

{brand.name}
Beautifully Simple.

{brand.tagline}

No credit card required
Setup in 2 minutes
Free forever
{/* Features Section */}

Everything you need to{" "} thrive

Powerful features wrapped in a calm, focused interface.

{[ { icon: Rocket, title: "Quick Setup", description: "Start creating invoices immediately. No complicated setup required.", items: [ "Simple client management", "Professional templates", "Easy invoice sending", ], }, { icon: BarChart3, title: "Payment Tracking", description: "Keep track of invoice status and monitor your payments effortlessly.", items: [ "Invoice status tracking", "Payment history", "Overdue notifications", ], }, { icon: Shield, title: "Professional Features", description: "Tools that make you look professional and get you paid faster.", items: [ "PDF generation", "Custom tax rates", "Professional numbering", ], }, ].map((feature, i) => (

{feature.title}

{feature.description}

    {feature.items.map((item, j) => (
  • {item}
  • ))}
))}
{/* Pricing Section */}

Simple Pricing

Focus on your work, not on fees.

Forever Free
$0
No credit card required.
{[ "Unlimited Invoices", "Unlimited Clients", "PDF Downloads", "Payment Tracking", "Email Support", ].map((item, i) => (
{item}
))}
{/* Footer */}
); }