Update app/page.tsx

This commit is contained in:
kleap-admin 2026-01-16 10:55:15 +00:00
parent d61ee97439
commit bd8af3ba08
1 changed files with 11 additions and 0 deletions

11
app/page.tsx Normal file
View File

@ -0,0 +1,11 @@
import { InvoiceGenerator } from "@/components/invoice-generator";
import { Footer } from "@/components/footer";
export default function Home() {
return (
<main>
<InvoiceGenerator />
<Footer />
</main>
);
}