aboutsummaryrefslogtreecommitdiff
path: root/src/app/page.tsx
diff options
context:
space:
mode:
authormihna123 <mihailonvojinovic@gmail.com>2026-06-06 19:51:23 +0200
committermihna123 <mihailonvojinovic@gmail.com>2026-06-06 19:51:23 +0200
commit31c60e3b4214c385ac8316597af53a525b55ca94 (patch)
tree3b7476a3c36b6408594989f3de18c90f5e4673f8 /src/app/page.tsx
parentc2d33aa0c52bc2bee61b0195c30e37f81cafa643 (diff)
downloadinvoice-31c60e3b4214c385ac8316597af53a525b55ca94.tar.gz
invoice-31c60e3b4214c385ac8316597af53a525b55ca94.zip
feat: update the layout and add more pages
- Add a proper header to the layout - Add a help page with instructions how to generate an invoice - Add an empty blog page that will eventually be filled with blogs
Diffstat (limited to 'src/app/page.tsx')
-rw-r--r--src/app/page.tsx13
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>
);
}