84 lines
3.3 KiB
TypeScript
84 lines
3.3 KiB
TypeScript
"use client";
|
|
|
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
|
import ReactLenis from "lenis/react";
|
|
import FeatureCardTen from '@/components/sections/feature/FeatureCardTen';
|
|
import FeatureCardTwelve from '@/components/sections/feature/FeatureCardTwelve';
|
|
import FooterBase from '@/components/sections/footer/FooterBase';
|
|
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
|
|
import { Waves } from "lucide-react";
|
|
|
|
export default function ServicesPage() {
|
|
return (
|
|
<ThemeProvider
|
|
defaultButtonVariant="shift-hover"
|
|
defaultTextAnimation="entrance-slide"
|
|
borderRadius="soft"
|
|
contentWidth="small"
|
|
sizing="medium"
|
|
background="noiseDiagonalGradient"
|
|
cardStyle="inset"
|
|
primaryButtonStyle="diagonal-gradient"
|
|
secondaryButtonStyle="layered"
|
|
headingFontWeight="medium"
|
|
>
|
|
<ReactLenis root>
|
|
<div id="nav" data-section="nav">
|
|
<NavbarStyleCentered
|
|
navItems={[
|
|
{ name: "Home", id: "/" },
|
|
{ name: "Services", id: "/services" },
|
|
{ name: "Classes", id: "/classes" },
|
|
{ name: "Booking", id: "/booking" },
|
|
{ name: "Contact", id: "/contact" },
|
|
]}
|
|
brandName="PIVOT FITNESS"
|
|
/>
|
|
</div>
|
|
|
|
<div id="services-list" data-section="services-list">
|
|
<FeatureCardTwelve
|
|
animationType="slide-up"
|
|
textboxLayout="default"
|
|
useInvertedBackground={false}
|
|
features={[
|
|
{ id: "1", label: "Performance", title: "Personal Training", items: ["One-on-one coaching", "Custom meal plans", "Progress tracking"] },
|
|
{ id: "2", label: "Community", title: "Group Classes", items: ["HIIT Sessions", "Strength Circuits", "Core Training"] },
|
|
{ id: "3", label: "Recovery", title: "Yoga & Pilates", items: ["Mobility flow", "Flexibility training", "Mind-body connection"] },
|
|
]}
|
|
title="Elite Fitness Services"
|
|
description="Tailored programs to meet your health and wellness goals."
|
|
/>
|
|
</div>
|
|
|
|
<div id="feature" data-section="feature">
|
|
<FeatureCardTen
|
|
animationType="slide-up"
|
|
textboxLayout="default"
|
|
useInvertedBackground={false}
|
|
title="Our Amenities"
|
|
description="Beyond the equipment, we offer complete recovery."
|
|
features={[
|
|
{
|
|
title: "Sauna", description: "Relax after your session.", media: { imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=qo7br4" },
|
|
items: [{ icon: Waves, text: "Dry Heat" }],
|
|
reverse: false
|
|
},
|
|
]}
|
|
/>
|
|
</div>
|
|
|
|
<div id="footer" data-section="footer">
|
|
<FooterBase
|
|
columns={[
|
|
{ title: "Services", items: [{ label: "Personal Training", href: "/services" }, { label: "Yoga", href: "/services" }] },
|
|
{ title: "Company", items: [{ label: "About Us", href: "/about" }, { label: "Contact", href: "/contact" }] },
|
|
]}
|
|
logoText="PIVOT FITNESS"
|
|
/>
|
|
</div>
|
|
</ReactLenis>
|
|
</ThemeProvider>
|
|
);
|
|
}
|