diff --git a/src/app/page.tsx b/src/app/page.tsx index 8e8e1ea..92c4dfe 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -6,11 +6,35 @@ import HeroBillboardRotatedCarousel from '@/components/sections/hero/HeroBillboa 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'; +import ContactSplitForm from '@/components/sections/contact/ContactSplitForm'; import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal'; import Link from 'next/link'; 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', + 'testimonial-member-4': 'http://img.b2bpic.net/free-photo/medium-shot-business-woman-pointing-camera-smiling_1098-20747.jpg', + 'testimonial-member-5': 'http://img.b2bpic.net/free-photo/smiling-young-spportswoman-shows-thumbs-up-motivated-fitness-woman-like-something-giving-compliment-recommending-sport-gym-white-background_176420-47064.jpg', + 'testimonial-member-6': 'http://img.b2bpic.net/free-photo/smiling-athletic-man-black-background_613910-9870.jpg', + 'team-trainer-1': 'http://img.b2bpic.net/free-photo/smiling-athletic-man-black-background_613910-9870.jpg', + 'team-trainer-2': 'http://img.b2bpic.net/free-photo/beautiful-sportive-girl-posing-with-crossed-arms-dark-wall_176420-620.jpg', + 'contact-form-image': 'http://img.b2bpic.net/free-photo/equipments-gym_93675-129485.jpg' +}; + +const getAssetUrl = (assetId: string): string => { + return assetMap[assetId] || '/placeholders/placeholder1.webp'; +}; + export default function HomePage() { return ( + {/* Team Section */} +
+ +
+ {/* Metrics Section */}
+ {/* Contact Section */} +
+ +
+ {/* Footer */}