Update src/app/services/page.tsx

This commit is contained in:
2026-03-03 14:51:09 +00:00
parent 5f930427dd
commit ed3bb87fff

View File

@@ -12,7 +12,7 @@ const navItems = [
{ name: "Home", id: "/" },
{ name: "Services", id: "/services" },
{ name: "Membership", id: "/membership" },
{ name: "About", id: "/about" },
{ name: "Assessment", id: "/#fitness-assessment" },
{ name: "Contact", id: "/contact" },
];
@@ -104,17 +104,20 @@ export default function ServicesPage() {
id: 1,
title: "Weight Training Programs", description:
"Build strength and muscle with our comprehensive weight training programs. Our certified trainers create personalized routines using modern equipment and proven techniques.", imageSrc:
"http://img.b2bpic.net/free-photo/still-life-gym-equipment_23-2148197736.jpg?_wi=3"},
"http://img.b2bpic.net/free-photo/still-life-gym-equipment_23-2148197736.jpg?_wi=3"
},
{
id: 2,
title: "Cardio & Endurance", description:
"Improve cardiovascular health and stamina with premium cardio equipment including treadmills, rowing machines, and ellipticals guided by fitness experts.", imageSrc:
"http://img.b2bpic.net/free-photo/young-woman-gym-fitnes_624325-2383.jpg?_wi=3"},
"http://img.b2bpic.net/free-photo/young-woman-gym-fitnes_624325-2383.jpg?_wi=3"
},
{
id: 3,
title: "One-on-One Personal Training", description:
"Get dedicated attention from certified trainers who design custom workout plans, monitor form, and adjust intensity to match your progress and goals.", imageSrc:
"http://img.b2bpic.net/free-photo/young-sports-people-training-morning-gym_1157-32133.jpg?_wi=3"},
"http://img.b2bpic.net/free-photo/young-sports-people-training-morning-gym_1157-32133.jpg?_wi=3"
},
]}
textboxLayout="default"
animationType="blur-reveal"
@@ -148,4 +151,4 @@ export default function ServicesPage() {
</div>
</ThemeProvider>
);
}
}