Update src/app/find/page.tsx

This commit is contained in:
2026-04-09 23:25:10 +00:00
parent aee9aa36f1
commit 4314ae3a97

View File

@@ -7,7 +7,7 @@ import FeatureCardSeven from '@/components/sections/feature/FeatureCardSeven';
import FooterSimple from '@/components/sections/footer/FooterSimple';
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
export default function LandingPage() {
export default function FindPage() {
return (
<ThemeProvider
defaultButtonVariant="expand-hover"
@@ -22,111 +22,70 @@ export default function LandingPage() {
headingFontWeight="bold"
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarStyleFullscreen
navItems={[
{
name: "Hub",
id: "/",
},
{
name: "Find a Gym",
id: "/find",
},
{
name: "Classes",
id: "/training",
},
{
name: "Offers",
id: "/news",
},
{
name: "Shop",
id: "/shop",
},
]}
brandName="GYM HOUSE SBA"
/>
</div>
<div id="nav" data-section="nav">
<NavbarStyleFullscreen
navItems={[
{ name: "Hub", id: "/" },
{ name: "Find a Gym", id: "/find" },
{ name: "Classes", id: "/training" },
{ name: "Offers", id: "/news" },
{ name: "Shop", id: "/shop" },
]}
brandName="GYM HOUSE SBA"
/>
</div>
<div id="find-directory" data-section="find-directory">
<FeatureCardSeven
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={false}
features={[
{
title: "House 06 Tunnel",
description: "Our largest facility at 1500 sqm, with full leisure space.",
imageSrc: "http://img.b2bpic.net/free-photo/still-life-gym-equipment_23-2148197730.jpg?_wi=2",
},
{
title: "House 03 Ibn Zaydoun",
description: "Includes professional swimming pool and intensive AquaGym.",
imageSrc: "http://img.b2bpic.net/free-photo/woman-swimming-pool-spa_23-2148000362.jpg?_wi=2",
},
]}
title="Directory of Houses"
description="Find your nearest GYM HOUSE SBA facility."
/>
</div>
<div id="find-directory" data-section="find-directory">
<FeatureCardSeven
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={false}
features={[
{
title: "House 06 Tunnel", description: "Our largest facility at 1500 sqm, with full leisure space.", imageSrc: "http://img.b2bpic.net/free-photo/still-life-gym-equipment_23-2148197730.jpg"},
{
title: "House 03 Ibn Zaydoun", description: "Includes professional swimming pool and intensive AquaGym.", imageSrc: "http://img.b2bpic.net/free-photo/woman-swimming-pool-spa_23-2148000362.jpg"},
]}
title="Directory of Houses"
description="Find your nearest GYM HOUSE SBA facility."
/>
</div>
<div id="faq" data-section="faq">
<FaqSplitText
useInvertedBackground={false}
title="Location FAQs"
sideTitle="Where to find us?"
faqsAnimation="slide-up"
faqs={[
{
id: "q1",
title: "How many branches?",
content: "We have 7 fully equipped branches.",
},
{
id: "q2",
title: "Are they all open?",
content: "Yes, check our social for hours.",
},
]}
/>
</div>
<div id="faq" data-section="faq">
<FaqSplitText
useInvertedBackground={false}
heading="Location FAQs"
sideTitle="Where to find us?"
faqsAnimation="slide-up"
faqs={[
{
id: "q1", title: "How many branches?", content: "We have 7 fully equipped branches."},
{
id: "q2", title: "Are they all open?", content: "Yes, check our social for hours."},
]}
/>
</div>
<div id="site-footer" data-section="site-footer">
<FooterSimple
columns={[
{
title: "Network",
items: [
{
label: "Branches",
href: "/find",
},
{
label: "Classes",
href: "/training",
},
],
},
{
title: "Offers",
items: [
{
label: "Promotions",
href: "/news",
},
{
label: "Ramadan Hours",
href: "/news",
},
],
},
]}
bottomLeftText="© 2024 GYM HOUSE SBA"
bottomRightText="Sidi Bel Abbes"
/>
</div>
<div id="site-footer" data-section="site-footer">
<FooterSimple
columns={[
{
title: "Network", items: [
{ label: "Branches", href: "/find" },
{ label: "Classes", href: "/training" },
],
},
{
title: "Offers", items: [
{ label: "Promotions", href: "/news" },
{ label: "Ramadan Hours", href: "/news" },
],
},
]}
bottomLeftText="© 2024 GYM HOUSE SBA"
bottomRightText="Sidi Bel Abbes"
/>
</div>
</ReactLenis>
</ThemeProvider>
);