aboutsummaryrefslogtreecommitdiff
path: root/src/app
diff options
context:
space:
mode:
authormihna123 <mihailonvojinovic@gmail.com>2026-06-02 00:48:08 +0200
committermihna123 <mihailonvojinovic@gmail.com>2026-06-02 00:48:08 +0200
commitc6eea92f2a3016463f0c4b8e4b813afd846bf821 (patch)
tree21cd909ac1e04572d7821bae375823e0fcdc63b7 /src/app
parenta2f51b8641e9240d8c5f298a393f4ece73b21cd8 (diff)
downloadinvoice-c6eea92f2a3016463f0c4b8e4b813afd846bf821.tar.gz
invoice-c6eea92f2a3016463f0c4b8e4b813afd846bf821.zip
feat: add footer and contact info
Diffstat (limited to 'src/app')
-rw-r--r--src/app/page.tsx16
1 files changed, 10 insertions, 6 deletions
diff --git a/src/app/page.tsx b/src/app/page.tsx
index b88e729..3e0a771 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -1,13 +1,17 @@
+import { Footer } from '@/components/footer';
import { InvoiceGenerator } from '@/components/invoice-generator';
export default function Home() {
return (
- <main className="space-y-4 p-2">
- <h1 className="text-center text-xl font-bold">
- 🧾 Free Invoice Generator
- </h1>
- <section className="flex items-center justify-center">
- <InvoiceGenerator />
+ <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 />
</section>
</main>
);