From f2b0ee448d3a08ae392a1858de3493f4cfe6c6df Mon Sep 17 00:00:00 2001 From: seaznCode Date: Fri, 3 Oct 2025 21:17:40 +0200 Subject: [PATCH] fix: footer stay on bottom now --- src/app/components/PageLayout.tsx | 8 ++++---- src/app/page.tsx | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src/app/components/PageLayout.tsx b/src/app/components/PageLayout.tsx index fe3d5b5..87be461 100644 --- a/src/app/components/PageLayout.tsx +++ b/src/app/components/PageLayout.tsx @@ -25,21 +25,21 @@ export default function PageLayout({ const isMobile = isMobileDevice(); return ( -
+
{showHeader && ( -
+
)} {/* Main content */} -
+
{children}
{showFooter && ( -
+
)} diff --git a/src/app/page.tsx b/src/app/page.tsx index 999d31c..dd96a7f 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -6,7 +6,7 @@ export default function HomePage() { {/* Hero Section */}
{/* ...existing code (pattern SVG + blurred polygon) ... */}