Merge version_2 into main #2

Merged
bender merged 3 commits from version_2 into main 2026-05-08 17:50:30 +00:00
3 changed files with 99 additions and 87 deletions

View File

@@ -3,36 +3,41 @@
import ReactLenis from "lenis/react";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay";
import TextSplitAbout from "@/components/sections/about/TextSplitAbout";
import FooterBase from "@/components/sections/footer/FooterBase";
import MetricSplitMediaAbout from "@/components/sections/about/MetricSplitMediaAbout";
import FooterBaseCard from "@/components/sections/footer/FooterBaseCard";
export default function AboutPage() {
return (
<ThemeProvider>
<ThemeProvider defaultButtonVariant="text-stagger" defaultTextAnimation="entrance-slide" borderRadius="rounded" contentWidth="medium" sizing="medium" background="circleGradient" cardStyle="glass-elevated" primaryButtonStyle="gradient" secondaryButtonStyle="glass" headingFontWeight="normal">
<ReactLenis root>
<NavbarLayoutFloatingOverlay
brandName="Webild"
navItems={[
{ name: "Work", id: "work" },
{ name: "Services", id: "services" },
{ name: "About", id: "/about" },
{ name: "Classes", id: "/classes" },
{ name: "Pricing", id: "/pricing" },
{ name: "Contact", id: "contact" },
]}
/>
<div className="pt-32 pb-20">
<TextSplitAbout
title="Our Gym Story"
description={["Founded with a passion for fitness and community, we've grown into a premier destination for health.", "Our mission is to provide an inclusive, motivating environment for everyone at every fitness level."]}
/>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingOverlay
brandName="Webild"
navItems={[
{ name: "Home", id: "/" },
{ name: "About", id: "/about" },
{ name: "Classes", id: "/classes" },
{ name: "Pricing", id: "/pricing" },
{ name: "Contact", id: "/contact" },
]}
/>
</div>
<div id="about-section" data-section="about-section">
<MetricSplitMediaAbout
title="Our Gym Story"
description="Founded with a passion for fitness and community, we've grown into a premier destination for health. Our mission is to provide an inclusive, motivating environment for everyone at every fitness level."
metrics={[{ value: "10+", title: "Years Exp." }, { value: "500+", title: "Members" }]}
useInvertedBackground={false}
/>
</div>
<div id="footer" data-section="footer">
<FooterBaseCard
logoText="Webild"
columns={[
{ title: "Company", items: [{ label: "About", href: "/about" }, { label: "Classes", href: "/classes" }, { label: "Pricing", href: "/pricing" }] }
]}
/>
</div>
<FooterBase
logoText="Webild"
columns={[
{ title: "Company", items: [{ label: "About", href: "/about" }, { label: "Classes", href: "/classes" }, { label: "Pricing", href: "/pricing" }] }
]}
/>
</ReactLenis>
</ThemeProvider>
);

View File

@@ -3,44 +3,47 @@
import ReactLenis from "lenis/react";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay";
import FeatureCardTen from "@/components/sections/feature/FeatureCardTen";
import FooterBase from "@/components/sections/footer/FooterBase";
import FeatureCardMedia from "@/components/sections/feature/FeatureCardMedia";
import FooterBaseCard from "@/components/sections/footer/FooterBaseCard";
import { Dumbbell } from "lucide-react";
export default function ClassesPage() {
return (
<ThemeProvider>
<ThemeProvider defaultButtonVariant="text-stagger" defaultTextAnimation="entrance-slide" borderRadius="rounded" contentWidth="medium" sizing="medium" background="circleGradient" cardStyle="glass-elevated" primaryButtonStyle="gradient" secondaryButtonStyle="glass" headingFontWeight="normal">
<ReactLenis root>
<NavbarLayoutFloatingOverlay
brandName="Webild"
navItems={[
{ name: "Work", id: "work" },
{ name: "Services", id: "services" },
{ name: "About", id: "/about" },
{ name: "Classes", id: "/classes" },
{ name: "Pricing", id: "/pricing" },
{ name: "Contact", id: "contact" },
]}
/>
<div className="pt-32">
<FeatureCardTen
title="Our Classes"
description="Explore our wide range of fitness classes designed for all skill levels."
textboxLayout="default"
animationType="slide-up"
useInvertedBackground={false}
features={[
{ title: "Yoga Flow", description: "Master your mind and body with our guided flow.", media: { imageSrc: "https://picsum.photos/800/600" }, items: [{ icon: Dumbbell, text: "Strength" }] },
{ title: "HIIT", description: "High-intensity interval training for maximum calorie burn.", media: { imageSrc: "https://picsum.photos/800/600" }, items: [{ icon: Dumbbell, text: "Endurance" }] }
]}
/>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingOverlay
brandName="Webild"
navItems={[
{ name: "Home", id: "/" },
{ name: "About", id: "/about" },
{ name: "Classes", id: "/classes" },
{ name: "Pricing", id: "/pricing" },
{ name: "Contact", id: "/contact" },
]}
/>
</div>
<div id="classes-section" data-section="classes-section">
<FeatureCardMedia
title="Our Classes"
description="Explore our wide range of fitness classes designed for all skill levels."
textboxLayout="default"
animationType="slide-up"
useInvertedBackground={false}
features={[
{ id: "yoga", title: "Yoga Flow", description: "Master your mind and body with our guided flow.", tag: "Mindfulness", imageSrc: "https://picsum.photos/800/600" },
{ id: "hiit", title: "HIIT", description: "High-intensity interval training for maximum calorie burn.", tag: "Endurance", imageSrc: "https://picsum.photos/800/600" }
]}
/>
</div>
<div id="footer" data-section="footer">
<FooterBaseCard
logoText="Webild"
columns={[
{ title: "Company", items: [{ label: "About", href: "/about" }, { label: "Classes", href: "/classes" }, { label: "Pricing", href: "/pricing" }] }
]}
/>
</div>
<FooterBase
logoText="Webild"
columns={[
{ title: "Company", items: [{ label: "About", href: "/about" }, { label: "Classes", href: "/classes" }, { label: "Pricing", href: "/pricing" }] }
]}
/>
</ReactLenis>
</ThemeProvider>
);

View File

@@ -4,41 +4,45 @@ import ReactLenis from "lenis/react";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay";
import PricingCardTwo from "@/components/sections/pricing/PricingCardTwo";
import FooterBase from "@/components/sections/footer/FooterBase";
import FooterBaseCard from "@/components/sections/footer/FooterBaseCard";
export default function PricingPage() {
return (
<ThemeProvider>
<ThemeProvider defaultButtonVariant="text-stagger" defaultTextAnimation="entrance-slide" borderRadius="rounded" contentWidth="medium" sizing="medium" background="circleGradient" cardStyle="glass-elevated" primaryButtonStyle="gradient" secondaryButtonStyle="glass" headingFontWeight="normal">
<ReactLenis root>
<NavbarLayoutFloatingOverlay
brandName="Webild"
navItems={[
{ name: "Work", id: "work" },
{ name: "Services", id: "services" },
{ name: "About", id: "/about" },
{ name: "Classes", id: "/classes" },
{ name: "Pricing", id: "/pricing" },
{ name: "Contact", id: "contact" },
]}
/>
<div className="pt-32">
<PricingCardTwo
title="Membership Tiers"
description="Choose the plan that fits your lifestyle."
animationType="slide-up"
textboxLayout="default"
plans={[
{ id: "basic", badge: "Starter", price: "$49", subtitle: "Essential access", buttons: [{ text: "Get Started" }], features: ["Access to gym floor", "1 class per week"] },
{ id: "pro", badge: "Pro", price: "$99", subtitle: "Full access", buttons: [{ text: "Join Now" }], features: ["24/7 access", "Unlimited classes"] }
]}
/>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingOverlay
brandName="Webild"
navItems={[
{ name: "Home", id: "/" },
{ name: "About", id: "/about" },
{ name: "Classes", id: "/classes" },
{ name: "Pricing", id: "/pricing" },
{ name: "Contact", id: "/contact" },
]}
/>
</div>
<div id="pricing-section" data-section="pricing-section">
<PricingCardTwo
title="Membership Tiers"
description="Choose the plan that fits your lifestyle."
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={false}
plans={[
{ id: "basic", badge: "Starter", price: "$49", subtitle: "Essential access", buttons: [{ text: "Get Started" }], features: ["Access to gym floor", "1 class per week"] },
{ id: "pro", badge: "Pro", price: "$99", subtitle: "Full access", buttons: [{ text: "Join Now" }], features: ["24/7 access", "Unlimited classes"] }
]}
/>
</div>
<div id="footer" data-section="footer">
<FooterBaseCard
logoText="Webild"
columns={[
{ title: "Company", items: [{ label: "About", href: "/about" }, { label: "Classes", href: "/classes" }, { label: "Pricing", href: "/pricing" }] }
]}
/>
</div>
<FooterBase
logoText="Webild"
columns={[
{ title: "Company", items: [{ label: "About", href: "/about" }, { label: "Classes", href: "/classes" }, { label: "Pricing", href: "/pricing" }] }
]}
/>
</ReactLenis>
</ThemeProvider>
);