From 537601ee199e3883ccfe7fb77f5803b10841b824 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 21 Mar 2026 23:07:25 +0000 Subject: [PATCH] Update src/app/page.tsx --- src/app/page.tsx | 70 +++++++++++++++++++++++------------------------- 1 file changed, 33 insertions(+), 37 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 509e92a..2be79e5 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -26,6 +26,9 @@ export default function LandingPage() { const galleryContainerRef = useRef(null); const shoesContainerRef = useRef(null); const veilsContainerRef = useRef(null); + const galleryButtonContainerRef = useRef(null); + const shoesButtonContainerRef = useRef(null); + const veilsButtonContainerRef = useRef(null); useEffect(() => { let ticking = false; @@ -447,19 +450,17 @@ export default function LandingPage() { }))} /> - {/* View More Button - Appears when 6th item is scrolled to */} + {/* View More Button - Positioned at bottom right of gallery section */} {showGalleryViewMore && ( -
-
- -
+
+
)}
@@ -595,19 +596,17 @@ export default function LandingPage() { ]} /> - {/* View More Button for Shoes - Appears when 6th item is scrolled to */} + {/* View More Button for Shoes - Positioned at bottom right of shoes section */} {showShoesViewMore && ( -
-
- -
+
+
)}
@@ -647,20 +646,17 @@ export default function LandingPage() { ]} /> - {/* View More Button for Veils - Appears when 6th item is scrolled to */} + {/* View More Button for Veils - Positioned at bottom right of veils section */} {showVeilsViewMore && ( -
-
- -
+
+
)}
-- 2.49.1