diff options
Diffstat (limited to 'src/app/page.tsx')
| -rw-r--r-- | src/app/page.tsx | 13 |
1 files changed, 4 insertions, 9 deletions
diff --git a/src/app/page.tsx b/src/app/page.tsx index 3e0a771..92e36b0 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -3,16 +3,11 @@ import { InvoiceGenerator } from '@/components/invoice-generator'; export default function Home() { return ( - <main className="pt-2"> - <section className="flex h-[100vh] flex-col items-center justify-between"> - <div className="space-y-10"> - <h1 className="text-center text-2xl font-bold"> - 🧾 Free Invoice Generator - </h1> - <InvoiceGenerator /> - </div> - <Footer /> + <main className="pt-10"> + <section className="mb-20 flex flex-col items-center"> + <InvoiceGenerator /> </section> + <Footer /> </main> ); } |
