diff options
| author | mihailo.vojinovic <mihailonvojinovic@gmail.com> | 2026-02-04 17:45:38 +0100 |
|---|---|---|
| committer | mihailo.vojinovic <mihailonvojinovic@gmail.com> | 2026-02-04 17:45:38 +0100 |
| commit | 94c9c0e87db6d878d1488ebeff60d728a89fc12d (patch) | |
| tree | abe8984b34b8d00ba8b722a4717399063d584334 /src/app/page.tsx | |
| parent | c77f727c419200b5d8f4e77d01675136113d2712 (diff) | |
| download | invoice-94c9c0e87db6d878d1488ebeff60d728a89fc12d.tar.gz invoice-94c9c0e87db6d878d1488ebeff60d728a89fc12d.zip | |
Add invoice generator component
Diffstat (limited to 'src/app/page.tsx')
| -rw-r--r-- | src/app/page.tsx | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/src/app/page.tsx b/src/app/page.tsx index 75f3c42..c71255f 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -1,7 +1,10 @@ +import { InvoiceGenerator } from "@/components/invoice-generator"; + export default function Home() { return ( - <div> - <h1>Free Invoice Generator</h1> - </div> + <main className="space-y-4 p-2"> + <h1 className="text-xl">Free Invoice Generator</h1> + <InvoiceGenerator /> + </main> ); } |
