blob: 3e0a7710fa7dc65bfb034cefec734c7101541149 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
import { Footer } from '@/components/footer';
import { InvoiceGenerator } from '@/components/invoice-generator';
export default function Home() {
return (
<main className="pt-2">
<section className="flex h-[100vh] flex-col items-center justify-between">
<div className="space-y-10">
<h1 className="text-center text-2xl font-bold">
🧾 Free Invoice Generator
</h1>
<InvoiceGenerator />
</div>
<Footer />
</section>
</main>
);
}
|