import Link from "next/link"; import { ArrowRight, FileText, UserRound } from "lucide-react"; import { AuthRedirect } from "~/components/AuthRedirect"; import { Logo } from "~/components/branding/logo"; import { Button } from "~/components/ui/button"; import { env } from "~/env"; import { brand } from "~/lib/branding"; export default function HomePage() { const allowRegistration = env.DISABLE_SIGNUPS !== true; return (

Personal invoicing

{brand.name} is a place to make and track invoices.

Built for one person managing real clients, real work, and the small admin loop around getting paid.

{allowRegistration && ( )}

Clients

Keep the people and businesses you invoice in one place.

Invoices

Draft, send, mark paid, and export the PDF when you need it.

); }