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,
Globe,
Sparkles,
BarChart3,
Clock,
Rocket,
Heart,
ChevronRight,
} from "lucide-react";
export default function HomePage() {
return (
{/* Navigation */}
{/* Hero Section */}
{/* Background decoration */}
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 */}
{/* Floating background elements */}
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 */}
{/* Floating background elements */}
Simple pricing
Start free, stay free. No hidden fees or limits.
Forever Free
{[
"Unlimited invoices",
"Unlimited clients",
"Professional templates",
"PDF export",
"Payment tracking",
"Multi-business support",
"Line item details",
"Free forever",
].map((feature, i) => (
{feature}
))}
No credit card required
{/* Why Choose */}
{/* Floating background elements */}
Why choose
BeenVoice
Quick & Simple
No learning curve. Start creating invoices in minutes.
Always Free
No hidden fees, no premium tiers. All features are free.
Save Time
Focus on your work, not paperwork. Automated calculations and
formatting.
{/* CTA Section */}
Ready to get started?
Join thousands of freelancers already using BeenVoice. Start
today—completely free.
Free forever
Secure & private
2-minute setup
{/* Footer */}
);
}