aboutsummaryrefslogtreecommitdiff
path: root/src/app/page.tsx
blob: 3892b193d4927d09131358c69a7a84be00e374ba (plain)
1
2
3
4
5
6
7
8
9
10
import { InvoiceGenerator } from '@/components/invoice-generator';

export default function Home() {
  return (
    <main className="space-y-4 p-2">
      <h1 className="text-xl">Free Invoice Generator</h1>
      <InvoiceGenerator />
    </main>
  );
}