diff options
| author | mihna123 <mihailonvojinovic@gmail.com> | 2026-06-02 00:33:22 +0200 |
|---|---|---|
| committer | mihna123 <mihailonvojinovic@gmail.com> | 2026-06-02 00:33:22 +0200 |
| commit | a2f51b8641e9240d8c5f298a393f4ece73b21cd8 (patch) | |
| tree | c416b5d6d60914dcf2e9f993df4b2347aa78dbf9 /src | |
| parent | 77699398de9b28f92b54b3511d9bec9e4962ae20 (diff) | |
| download | invoice-a2f51b8641e9240d8c5f298a393f4ece73b21cd8.tar.gz invoice-a2f51b8641e9240d8c5f298a393f4ece73b21cd8.zip | |
feat: make content centered
Diffstat (limited to 'src')
| -rw-r--r-- | src/app/page.tsx | 8 |
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> ); } |
