blob: b88e7299a01af17936bbbdf1a03727c31f34aab6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
import { InvoiceGenerator } from '@/components/invoice-generator';
export default function Home() {
return (
<main className="space-y-4 p-2">
<h1 className="text-center text-xl font-bold">
🧾 Free Invoice Generator
</h1>
<section className="flex items-center justify-center">
<InvoiceGenerator />
</section>
</main>
);
}
|