Merge version_2 into main #8

Merged
bender merged 1 commits from version_2 into main 2026-03-05 15:37:00 +00:00

View File

@@ -4,7 +4,6 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
import HeroBillboardRotatedCarousel from '@/components/sections/hero/HeroBillboardRotatedCarousel';
import SplitAbout from '@/components/sections/about/SplitAbout';
import FeatureCardTwentySeven from '@/components/sections/feature/FeatureCardTwentySeven';
import TestimonialCardFifteen from '@/components/sections/testimonial/TestimonialCardFifteen';
import TeamCardTen from '@/components/sections/team/TeamCardTen';
import MetricCardOne from '@/components/sections/metrics/MetricCardOne';
@@ -16,10 +15,6 @@ import { Zap, Users, Heart, Clock, Sparkles, Award, Star } from 'lucide-react';
const assetMap: { [key: string]: string } = {
'hero-gym-training': 'http://img.b2bpic.net/free-photo/athletic-tattooed-male-two-sporty-women-doing-trx-straps-exercises_613910-11340.jpg',
'about-gym-interior': 'http://img.b2bpic.net/free-photo/sport-fitness-health-exercise-bikes-fitness-center_613910-20283.jpg',
'feature-strength-training': 'http://img.b2bpic.net/free-photo/athletic-blond-female-fitness-model-holding-heavy-barbell-preparing-squats_613910-257.jpg',
'feature-personal-training': 'http://img.b2bpic.net/free-photo/indian-man-doing-excercisses-special-equipment-gym-with-personal-trainer_1157-51767.jpg',
'feature-weight-loss': 'http://img.b2bpic.net/free-photo/african-woman-is-measuring-her-waist-with-centimeter-has-happy-look_8353-10009.jpg',
'feature-group-fitness': 'http://img.b2bpic.net/free-photo/young-sports-people-training-morning-gym_1157-32104.jpg',
'testimonial-member-1': 'http://img.b2bpic.net/free-photo/medium-shot-business-woman-pointing-camera-smiling_1098-20747.jpg',
'testimonial-member-2': 'http://img.b2bpic.net/free-photo/beautiful-sportive-girl-posing-with-crossed-arms-dark-wall_176420-620.jpg',
'testimonial-member-3': 'http://img.b2bpic.net/free-photo/medium-shot-business-woman-pointing-camera-smiling_1098-20747.jpg',
@@ -54,7 +49,6 @@ export default function HomePage() {
<NavbarStyleFullscreen
navItems={[
{ name: 'Home', id: '/' },
{ name: 'Services', id: '/services' },
{ name: 'About', id: '/about' },
{ name: 'Contact', id: '/contact' }
]}
@@ -81,10 +75,10 @@ export default function HomePage() {
carouselItems={[
{ id: "1", imageSrc: getAssetUrl('hero-gym-training') },
{ id: "2", imageSrc: getAssetUrl('about-gym-interior') },
{ id: "3", imageSrc: getAssetUrl('feature-strength-training') },
{ id: "4", imageSrc: getAssetUrl('feature-personal-training') },
{ id: "5", imageSrc: getAssetUrl('feature-weight-loss') },
{ id: "6", imageSrc: getAssetUrl('feature-group-fitness') }
{ id: "3", imageSrc: getAssetUrl('about-gym-interior') },
{ id: "4", imageSrc: getAssetUrl('about-gym-interior') },
{ id: "5", imageSrc: getAssetUrl('about-gym-interior') },
{ id: "6", imageSrc: getAssetUrl('about-gym-interior') }
]}
autoPlay={true}
autoPlayInterval={4000}
@@ -123,40 +117,6 @@ export default function HomePage() {
/>
</div>
{/* Features Section */}
<div id="features" data-section="features">
<FeatureCardTwentySeven
title="Our Services & Programs"
description="Discover the comprehensive fitness solutions we offer to help you achieve your goals"
tag="Services"
tagIcon={Sparkles}
tagAnimation="slide-up"
features={[
{
id: "1", title: "Strength Training", description: "Build muscle and increase your strength with our comprehensive weightlifting programs. Perfect for beginners and advanced lifters alike, with personalized guidance from our expert trainers.", imageSrc: getAssetUrl('feature-strength-training'),
imageAlt: "Strength training equipment and setup"
},
{
id: "2", title: "Personal Training", description: "One-on-one coaching tailored to your specific goals and fitness level. Our certified trainers will design a custom program and provide motivation every step of the way.", imageSrc: getAssetUrl('feature-personal-training'),
imageAlt: "Personal trainer guiding a client"
},
{
id: "3", title: "Weight Loss Programs", description: "Achieve your weight loss goals with our specialized programs combining effective workouts, nutrition guidance, and ongoing support from our professional team.", imageSrc: getAssetUrl('feature-weight-loss'),
imageAlt: "Fitness transformation and weight loss progress"
},
{
id: "4", title: "General Fitness", description: "Maintain overall health and fitness with our balanced approach to exercise, including cardio, flexibility training, and functional fitness for everyone.", imageSrc: getAssetUrl('feature-group-fitness'),
imageAlt: "Group fitness class in action"
}
]}
gridVariant="four-items-2x2-equal-grid"
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={false}
ariaLabel="Feature cards showcasing gym services and training programs"
/>
</div>
{/* Testimonials Section */}
<div id="testimonials" data-section="testimonials">
<TestimonialCardFifteen