Update src/app/gallery/page.tsx

This commit is contained in:
2026-06-03 11:25:24 +00:00
parent 12337256e7
commit fbf19744bd

View File

@@ -26,38 +26,22 @@ export default function LandingPage() {
<NavbarStyleCentered
navItems={[
{
name: "Home",
id: "/",
},
name: "Home", id: "/"},
{
name: "About Us",
id: "/about",
},
name: "About Us", id: "/about"},
{
name: "Services",
id: "/services",
},
name: "Services", id: "/services"},
{
name: "Membership",
id: "/membership",
},
name: "Membership", id: "/membership"},
{
name: "Gallery",
id: "/gallery",
},
name: "Gallery", id: "/gallery"},
{
name: "Testimonials",
id: "/testimonials",
},
name: "Testimonials", id: "/testimonials"},
{
name: "Contact",
id: "/contact",
},
name: "Contact", id: "/contact"},
]}
button={{
text: "Join Now",
href: "/membership",
}}
text: "Join Now", href: "/membership"}}
brandName="City Club"
/>
</div>
@@ -70,47 +54,17 @@ export default function LandingPage() {
useInvertedBackground={false}
products={[
{
id: "gallery-1",
name: "Modern Equipment",
price: "State-of-the-art",
imageSrc: "http://img.b2bpic.net/free-photo/3d-rendering-modern-loft-gym-fitness_105762-2020.jpg",
imageAlt: "Modern gym equipment",
},
id: "gallery-1", name: "Modern Equipment", price: "State-of-the-art", imageSrc: "http://img.b2bpic.net/free-photo/3d-rendering-modern-loft-gym-fitness_105762-2020.jpg", imageAlt: "Modern gym equipment"},
{
id: "gallery-2",
name: "Cardio Zone",
price: "High-Tech Treadmills",
imageSrc: "http://img.b2bpic.net/free-photo/young-woman-walking-treadmill_23-2147688009.jpg",
imageAlt: "Cardio zone",
},
id: "gallery-2", name: "Cardio Zone", price: "High-Tech Treadmills", imageSrc: "http://img.b2bpic.net/free-photo/young-woman-walking-treadmill_23-2147688009.jpg", imageAlt: "Cardio zone"},
{
id: "gallery-3",
name: "Strength Training",
price: "Free Weights & Machines",
imageSrc: "http://img.b2bpic.net/free-photo/crop-hands-putting-weight-barbell_23-2147779075.jpg",
imageAlt: "Strength training area",
},
id: "gallery-3", name: "Strength Training", price: "Free Weights & Machines", imageSrc: "http://img.b2bpic.net/free-photo/crop-hands-putting-weight-barbell_23-2147779075.jpg", imageAlt: "Strength training area"},
{
id: "gallery-4",
name: "Group Exercise Area",
price: "Yoga & Functional",
imageSrc: "http://img.b2bpic.net/free-photo/women-working-together-mat_23-2148387875.jpg",
imageAlt: "Group exercise studio",
},
id: "gallery-4", name: "Group Exercise Area", price: "Yoga & Functional", imageSrc: "http://img.b2bpic.net/free-photo/women-working-together-mat_23-2148387875.jpg", imageAlt: "Group exercise studio"},
{
id: "gallery-5",
name: "Members in Action",
price: "Inspiring Community",
imageSrc: "http://img.b2bpic.net/free-photo/healthy-female-is-doing-exercise-outdoor_344912-1982.jpg",
imageAlt: "Members training",
},
id: "gallery-5", name: "Members in Action", price: "Inspiring Community", imageSrc: "http://img.b2bpic.net/free-photo/healthy-female-is-doing-exercise-outdoor_344912-1982.jpg", imageAlt: "Members training"},
{
id: "gallery-6",
name: "Locker Rooms",
price: "Clean & Spacious",
imageSrc: "http://img.b2bpic.net/free-photo/choosing-clothes-man-plaid-homewear-holding-grey-shirt_259150-57933.jpg",
imageAlt: "Modern locker room",
},
id: "gallery-6", name: "Locker Rooms", price: "Clean & Spacious", imageSrc: "http://img.b2bpic.net/free-photo/choosing-clothes-man-plaid-homewear-holding-grey-shirt_259150-57933.jpg", imageAlt: "Modern locker room"},
]}
title="A Glimpse Inside City Club"
description="Explore our state-of-the-art facilities, modern equipment, and vibrant workout areas designed to inspire your fitness journey."
@@ -123,11 +77,8 @@ export default function LandingPage() {
title="Ready to See It for Yourself?"
buttons={[
{
text: "Schedule a Tour",
href: "/contact",
},
text: "Schedule a Tour", href: "/contact"},
]}
description="Pictures can only tell half the story. Visit City Club today for a personal tour and experience the difference! Our team is excited to show you around and answer any questions."
/>
</div>
@@ -136,66 +87,39 @@ export default function LandingPage() {
logoText="City Club"
columns={[
{
title: "Quick Links",
items: [
title: "Quick Links", items: [
{
label: "Home",
href: "/",
},
label: "Home", href: "/"},
{
label: "About Us",
href: "/about",
},
label: "About Us", href: "/about"},
{
label: "Services",
href: "/services",
},
label: "Services", href: "/services"},
{
label: "Membership",
href: "/membership",
},
label: "Membership", href: "/membership"},
],
},
{
title: "Support",
items: [
title: "Support", items: [
{
label: "FAQ",
href: "/services#faq",
},
label: "FAQ", href: "/services#faq"},
{
label: "Contact Us",
href: "/contact",
},
label: "Contact Us", href: "/contact"},
{
label: "Privacy Policy",
href: "#",
},
label: "Privacy Policy", href: "#"},
{
label: "Terms of Service",
href: "#",
},
label: "Terms of Service", href: "#"},
],
},
{
title: "Connect",
items: [
title: "Connect", items: [
{
label: "Facebook",
href: "#",
},
label: "Facebook", href: "#"},
{
label: "Instagram",
href: "#",
},
label: "Instagram", href: "#"},
{
label: "Twitter",
href: "#",
},
label: "Twitter", href: "#"},
{
label: "Google Maps",
href: "https://maps.app.goo.gl/HsBNJzujwy7kFqf78",
},
label: "Google Maps", href: "https://maps.app.goo.gl/HsBNJzujwy7kFqf78"},
],
},
]}