From 4972ea8c04fecc60f4f417aaa9c5e9364c1c6ff9 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 22 Apr 2026 14:47:36 +0000 Subject: [PATCH] Update src/app/gallery/page.tsx --- src/app/gallery/page.tsx | 108 +++++++++------------------------------ 1 file changed, 24 insertions(+), 84 deletions(-) diff --git a/src/app/gallery/page.tsx b/src/app/gallery/page.tsx index 061225b..1a0724e 100644 --- a/src/app/gallery/page.tsx +++ b/src/app/gallery/page.tsx @@ -6,7 +6,7 @@ import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis' import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen'; import ProductCardOne from '@/components/sections/product/ProductCardOne'; -export default function LandingPage() { +export default function GalleryPage() { return ( @@ -62,43 +41,20 @@ export default function LandingPage() { textboxLayout="default" gridVariant="uniform-all-items-equal" useInvertedBackground={true} + animationType="slide-up" products={[ { - id: "r1", - name: "Acne Reduction", - price: "4 Weeks", - imageSrc: "http://img.b2bpic.net/free-photo/rhinoplasty-surgery-concept-with-man-model_23-2150036920.jpg", - }, + id: "r1", name: "Acne Reduction", price: "4 Weeks", imageSrc: "http://img.b2bpic.net/free-photo/rhinoplasty-surgery-concept-with-man-model_23-2150036920.jpg"}, { - id: "r2", - name: "Rejuvenation", - price: "8 Weeks", - imageSrc: "http://img.b2bpic.net/free-photo/close-up-beautiful-models-posing-with-copy-space_23-2148313378.jpg", - }, + id: "r2", name: "Rejuvenation", price: "8 Weeks", imageSrc: "http://img.b2bpic.net/free-photo/close-up-beautiful-models-posing-with-copy-space_23-2148313378.jpg"}, { - id: "r3", - name: "Scar Improvement", - price: "3 Sessions", - imageSrc: "http://img.b2bpic.net/free-photo/before-after-portrait-woman-retouched_23-2149121643.jpg", - }, + id: "r3", name: "Scar Improvement", price: "3 Sessions", imageSrc: "http://img.b2bpic.net/free-photo/before-after-portrait-woman-retouched_23-2149121643.jpg"}, { - id: "r4", - name: "Skin Brightening", - price: "2 Months", - imageSrc: "http://img.b2bpic.net/free-photo/combination-facial-features-concept_23-2150039746.jpg", - }, + id: "r4", name: "Skin Brightening", price: "2 Months", imageSrc: "http://img.b2bpic.net/free-photo/combination-facial-features-concept_23-2150039746.jpg"}, { - id: "r5", - name: "Laser Results", - price: "Post-Laser", - imageSrc: "http://img.b2bpic.net/free-photo/fun-portrait-with-glued-decorations-face_23-2151097703.jpg", - }, + id: "r5", name: "Laser Results", price: "Post-Laser", imageSrc: "http://img.b2bpic.net/free-photo/fun-portrait-with-glued-decorations-face_23-2151097703.jpg"}, { - id: "r6", - name: "Hydration", - price: "After 1", - imageSrc: "http://img.b2bpic.net/free-photo/combination-facial-features-concept_23-2150087698.jpg", - }, + id: "r6", name: "Hydration", price: "After 1", imageSrc: "http://img.b2bpic.net/free-photo/combination-facial-features-concept_23-2150087698.jpg"}, ]} title="Before & After Results" description="A glimpse into our success stories. *Individual results may vary.*" @@ -110,38 +66,22 @@ export default function LandingPage() { columns={[ { items: [ - { - label: "About", - }, - { - label: "Services", - }, - { - label: "Contact", - }, + { label: "About" }, + { label: "Services" }, + { label: "Contact" }, ], }, { items: [ - { - label: "Instagram", - }, - { - label: "Facebook", - }, - { - label: "LinkedIn", - }, + { label: "Instagram" }, + { label: "Facebook" }, + { label: "LinkedIn" }, ], }, { items: [ - { - label: "Privacy Policy", - }, - { - label: "Terms of Service", - }, + { label: "Privacy Policy" }, + { label: "Terms of Service" }, ], }, ]} @@ -151,4 +91,4 @@ export default function LandingPage() { ); -} +} \ No newline at end of file