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 && ( -
-
- -
+
+
)}