blob: 92e36b0029073df7934156ba142322adc164c9e3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
import { Footer } from '@/components/footer';
import { InvoiceGenerator } from '@/components/invoice-generator';
export default function Home() {
return (
<main className="pt-10">
<section className="mb-20 flex flex-col items-center">
<InvoiceGenerator />
</section>
<Footer />
</main>
);
}
|