blob: 192a102a517f68d37b1ad95656db86768e9ab9e6 (
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>
);
}
|