Add src/app/target/page.tsx
This commit is contained in:
69
src/app/target/page.tsx
Normal file
69
src/app/target/page.tsx
Normal file
@@ -0,0 +1,69 @@
|
||||
"use client";
|
||||
|
||||
import ReactLenis from "lenis/react";
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import NavbarStyleFullscreen from "@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen";
|
||||
import FeatureCardNineteen from "@/components/sections/feature/FeatureCardNineteen";
|
||||
import FooterSimple from "@/components/sections/footer/FooterSimple";
|
||||
import { CheckCircle } from "lucide-react";
|
||||
|
||||
export default function TargetPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="expand-hover"
|
||||
defaultTextAnimation="entrance-slide"
|
||||
borderRadius="soft"
|
||||
contentWidth="mediumLarge"
|
||||
sizing="large"
|
||||
background="dark"
|
||||
cardStyle="glass-elevated"
|
||||
primaryButtonStyle="gradient"
|
||||
secondaryButtonStyle="glass"
|
||||
headingFontWeight="semibold"
|
||||
>
|
||||
<ReactLenis root>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleFullscreen
|
||||
brandName="SVS FITNESS"
|
||||
navItems={[
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Target", id: "services" },
|
||||
{ name: "Plans", id: "/#team" },
|
||||
{ name: "FAQ", id: "/#faq" },
|
||||
{ name: "Register", id: "/#contact" },
|
||||
]}
|
||||
button={{ text: "Start Now", href: "/#contact" }}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="services" data-section="services">
|
||||
<FeatureCardNineteen
|
||||
tag="Programs"
|
||||
tagIcon={CheckCircle}
|
||||
title="Select Your Body Target Area"
|
||||
description="Customized training paths designed to help you reach your goals faster. Choose an area below to see specialized routines."
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
features={[
|
||||
{ tag: "Focus", title: "Full Body & Weight Loss", subtitle: "Complete Transformation", description: "High intensity programs for total body fat reduction and conditioning.", imageSrc: "asset://full-body" },
|
||||
{ tag: "Power", title: "Muscle & Strength", subtitle: "Gain & Power", description: "Targeted isolation workouts for maximum hypertrophy and arm strength.", imageSrc: "asset://muscle" },
|
||||
{ tag: "Aesthetics", title: "Chest & Core", subtitle: "Advanced Toning", description: "Sculpt your six-pack and build a powerful chest with expert form.", imageSrc: "asset://chest" },
|
||||
{ tag: "Health", title: "General Fitness", subtitle: "Wellness", description: "Stay active, healthy, and energized with our daily wellness routines.", imageSrc: "asset://general" },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterSimple
|
||||
columns={[
|
||||
{ title: "SVS FITNESS", items: [{ label: "IP NAGAR GALI NO. 5 PATERI" }] },
|
||||
{ title: "Quick Links", items: [{ label: "Home", href: "/" }, { label: "Plans", href: "/#team" }] },
|
||||
]}
|
||||
bottomLeftText="© 2025 SVS Fitness Centre"
|
||||
bottomRightText="All Rights Reserved"
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user