aboutsummaryrefslogtreecommitdiff
path: root/src/app/page.tsx
diff options
context:
space:
mode:
authormihna123 <mihailonvojinovic@gmail.com>2026-06-09 00:00:50 +0200
committermihna123 <mihailonvojinovic@gmail.com>2026-06-09 00:00:50 +0200
commit1a487b742882569e1fcf4f1dddf7687db38c81d1 (patch)
tree33ccfd5574ebf626115a4a27fd791f5e32aba289 /src/app/page.tsx
parentcf76b0298533616c49892485c87737c01906e262 (diff)
downloadinvoice-1a487b742882569e1fcf4f1dddf7687db38c81d1.tar.gz
invoice-1a487b742882569e1fcf4f1dddf7687db38c81d1.zip
feat: remove the footer as all the info is in the help page already
Diffstat (limited to 'src/app/page.tsx')
-rw-r--r--src/app/page.tsx2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/app/page.tsx b/src/app/page.tsx
index 92e36b0..1cf5531 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -1,4 +1,3 @@
-import { Footer } from '@/components/footer';
import { InvoiceGenerator } from '@/components/invoice-generator';
export default function Home() {
@@ -7,7 +6,6 @@ export default function Home() {
<section className="mb-20 flex flex-col items-center">
<InvoiceGenerator />
</section>
- <Footer />
</main>
);
}