aboutsummaryrefslogtreecommitdiff
path: root/src/app/page.tsx
diff options
context:
space:
mode:
authormihna123 <mihailonvojinovic@gmail.com>2026-06-02 00:33:22 +0200
committermihna123 <mihailonvojinovic@gmail.com>2026-06-02 00:33:22 +0200
commita2f51b8641e9240d8c5f298a393f4ece73b21cd8 (patch)
treec416b5d6d60914dcf2e9f993df4b2347aa78dbf9 /src/app/page.tsx
parent77699398de9b28f92b54b3511d9bec9e4962ae20 (diff)
downloadinvoice-a2f51b8641e9240d8c5f298a393f4ece73b21cd8.tar.gz
invoice-a2f51b8641e9240d8c5f298a393f4ece73b21cd8.zip
feat: make content centered
Diffstat (limited to 'src/app/page.tsx')
-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>
);
}