aboutsummaryrefslogtreecommitdiff
path: root/src/app/page.tsx
blob: 4437cc6979b97a4c06c2d495f9ee7b98cab1a8ae (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 font-bold">🧾 Free Invoice Generator</h1>
      <InvoiceGenerator />
    </main>
  );
}