aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/app/page.tsx8
1 files changed, 6 insertions, 2 deletions
diff --git a/src/app/page.tsx b/src/app/page.tsx
index 4437cc6..b88e729 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -3,8 +3,12 @@ import { InvoiceGenerator } from '@/components/invoice-generator';
export default function Home() {
return (
<main className="space-y-4 p-2">
- <h1 className="text-xl font-bold">🧾 Free Invoice Generator</h1>
- <InvoiceGenerator />
+ <h1 className="text-center text-xl font-bold">
+ 🧾 Free Invoice Generator
+ </h1>
+ <section className="flex items-center justify-center">
+ <InvoiceGenerator />
+ </section>
</main>
);
}