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, ChevronRight, } from "lucide-react"; export default function HomePage() { return (
{/* Navigation */} {/* Hero Section */}
Free Forever

Simple Invoicing for Freelancers

Create professional invoices, manage clients, and track payments. Built for freelancers and small businesses— completely free .

{[ "No credit card required", "Setup in 2 minutes", "Free forever", ].map((text, i) => (
{text}
))}
{/* Features Section */}
Features

Everything you need to get paid

Simple, powerful features for freelancers and small businesses.

{/* Feature 1 */}

Quick Setup

Start creating invoices immediately. No complicated setup required.

  • Simple client management
  • Professional templates
  • Easy invoice sending
{/* Feature 2 */}

Payment Tracking

Keep track of invoice status and monitor payments.

  • Invoice status tracking
  • Payment history
  • Overdue notifications
{/* Feature 3 */}

Professional Features

Professional features to help you get paid on time.

  • PDF generation
  • Custom tax rates
  • Professional numbering
{/* Pricing Section */}

Simple pricing

Start free, stay free. No hidden fees or limits.

Forever Free
$0

Forever. No credit card required.

    {[ "Unlimited invoices", "Client management", "PDF generation", "Payment tracking", "Professional templates", "Custom tax rates", "Email support", ].map((feature, i) => (
  • {feature}
  • ))}
{/* CTA Section */}

Ready to get started?

Join thousands of freelancers who trust beenvoice for their invoicing needs.

{/* Footer */}
); }