Update src/app/services/page.tsx

This commit is contained in:
2026-05-08 05:52:53 +00:00
parent b829750daa
commit ce97a82605

View File

@@ -8,7 +8,7 @@ import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleAp
import TestimonialAboutCard from '@/components/sections/about/TestimonialAboutCard';
import { TrendingUp } from "lucide-react";
export default function LandingPage() {
export default function ServicesPage() {
return (
<ThemeProvider
defaultButtonVariant="shift-hover"
@@ -26,26 +26,11 @@ export default function LandingPage() {
<div id="nav" data-section="nav">
<NavbarStyleApple
navItems={[
{
name: "Home",
id: "/",
},
{
name: "About",
id: "/about",
},
{
name: "Services",
id: "/services",
},
{
name: "Membership",
id: "/membership",
},
{
name: "Contact",
id: "/contact",
},
{ name: "Home", id: "/" },
{ name: "About", id: "/about" },
{ name: "Services", id: "/services" },
{ name: "Membership", id: "/membership" },
{ name: "Contact", id: "/contact" },
]}
brandName="UrbanFit Gym"
/>
@@ -53,30 +38,16 @@ export default function LandingPage() {
<div id="services-list" data-section="services-list">
<FeatureCardMedia
animationType="slide-up"
textboxLayout="split-description"
useInvertedBackground={false}
features={[
{
id: "s1",
title: "Group Classes",
description: "Energizing sessions for all fitness levels.",
tag: "Class",
imageSrc: "http://img.b2bpic.net/free-photo/full-shot-people-training-together-gym_23-2150290027.jpg",
},
id: "s1", title: "Group Classes", description: "Energizing sessions for all fitness levels.", tag: "Class", imageSrc: "http://img.b2bpic.net/free-photo/full-shot-people-training-together-gym_23-2150290027.jpg"},
{
id: "s2",
title: "Cardio Training",
description: "State of the art cardio zone for endurance.",
tag: "Elite",
imageSrc: "http://img.b2bpic.net/free-photo/young-athletic-woman-exercising-strength-gymnastic-rings-cross-training-fitness-center_637285-447.jpg",
},
id: "s2", title: "Cardio Training", description: "State of the art cardio zone for endurance.", tag: "Elite", imageSrc: "http://img.b2bpic.net/free-photo/young-athletic-woman-exercising-strength-gymnastic-rings-cross-training-fitness-center_637285-447.jpg"},
{
id: "s3",
title: "Strength Training",
description: "Power and conditioning for maximum strength.",
tag: "Core",
imageSrc: "http://img.b2bpic.net/free-photo/male-trainer-teaching-boxing_23-2148615098.jpg",
},
id: "s3", title: "Strength Training", description: "Power and conditioning for maximum strength.", tag: "Core", imageSrc: "http://img.b2bpic.net/free-photo/male-trainer-teaching-boxing_23-2148615098.jpg"},
]}
title="Our Services"
description="Professional training at every level."
@@ -95,38 +66,6 @@ export default function LandingPage() {
mediaAnimation="slide-up"
/>
</div>
<div id="footer-main" data-section="footer-main">
<FooterLogoEmphasis
columns={[
{
items: [
{
label: "About",
href: "/about",
},
{
label: "Services",
href: "/services",
},
],
},
{
items: [
{
label: "Membership",
href: "/membership",
},
{
label: "Contact",
href: "/contact",
},
],
},
]}
logoText="UrbanFit Gym"
/>
</div>
</ReactLenis>
</ThemeProvider>
);