Update src/app/page.tsx
This commit is contained in:
294
src/app/page.tsx
294
src/app/page.tsx
@@ -32,22 +32,10 @@ export default function LandingPage() {
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleCentered
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "hero",
|
||||
},
|
||||
{
|
||||
name: "Services",
|
||||
id: "features",
|
||||
},
|
||||
{
|
||||
name: "Equipment",
|
||||
id: "products",
|
||||
},
|
||||
{
|
||||
name: "Join Now",
|
||||
id: "contact",
|
||||
},
|
||||
{ name: "Home", id: "hero" },
|
||||
{ name: "Services", id: "features" },
|
||||
{ name: "Equipment", id: "products" },
|
||||
{ name: "Join Now", id: "contact" },
|
||||
]}
|
||||
brandName="IRON PULSE"
|
||||
/>
|
||||
@@ -58,81 +46,15 @@ export default function LandingPage() {
|
||||
title="FORGE YOUR LEGACY"
|
||||
description="Experience the ultimate fitness evolution in a professional, high-octane environment. Push your boundaries in a gym designed for champions."
|
||||
testimonials={[
|
||||
{
|
||||
name: "Alex R.",
|
||||
handle: "@alexfit",
|
||||
testimonial: "The atmosphere here is electric. Best training environment ever.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/smiling-athletic-man-black-background_613910-9870.jpg",
|
||||
},
|
||||
{
|
||||
name: "Sarah K.",
|
||||
handle: "@sarahstrong",
|
||||
testimonial: "Elite equipment and amazing trainers. I've never been stronger.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-sportive-girl-posing-with-crossed-arms-dark-wall_176420-625.jpg",
|
||||
},
|
||||
{
|
||||
name: "Mike B.",
|
||||
handle: "@mikebuilt",
|
||||
testimonial: "A true professional gym. The red and black aesthetic is just fire.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/smiling-afro-american-sports-man-with-arms-folded-looking-camera_171337-8257.jpg",
|
||||
},
|
||||
{
|
||||
name: "Elena P.",
|
||||
handle: "@elenaform",
|
||||
testimonial: "The best place to reach your peak performance.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/gym-with-motivational-phrase_1134-447.jpg",
|
||||
},
|
||||
{
|
||||
name: "David L.",
|
||||
handle: "@davidpower",
|
||||
testimonial: "High intensity, high reward. Simply the best gym in the city.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/sporty-senior-woman-with-short-hair-front-view_23-2148827690.jpg",
|
||||
},
|
||||
{
|
||||
name: "Monica C.",
|
||||
handle: "@monicagains",
|
||||
testimonial: "Transformative results in a space built for results.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-woman-using-smartphone-gym_23-2147789617.jpg",
|
||||
},
|
||||
{ name: "Alex R.", handle: "@alexfit", testimonial: "The atmosphere here is electric. Best training environment ever.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/smiling-athletic-man-black-background_613910-9870.jpg" },
|
||||
{ name: "Sarah K.", handle: "@sarahstrong", testimonial: "Elite equipment and amazing trainers. I've never been stronger.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/beautiful-sportive-girl-posing-with-crossed-arms-dark-wall_176420-625.jpg" },
|
||||
{ name: "Mike B.", handle: "@mikebuilt", testimonial: "A true professional gym. The red and black aesthetic is just fire.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/smiling-afro-american-sports-man-with-arms-folded-looking-camera_171337-8257.jpg" }
|
||||
]}
|
||||
buttons={[
|
||||
{
|
||||
text: "JOIN NOW",
|
||||
href: "#contact",
|
||||
},
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/front-view-fit-woman-training-with-dumbells_23-2150255909.jpg"
|
||||
videoSrc="https://example.com/gym-overview.mp4"
|
||||
buttons={[{ text: "JOIN NOW", href: "#contact" }]}
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3DIPqBjUvWieuhvV820ZyysC9Hy/uploaded-1778048850945-5rirzhsf.png"
|
||||
imageClassName="animate-pulse duration-[3s] ease-in-out infinite"
|
||||
showDimOverlay={true}
|
||||
showBlur={true}
|
||||
avatars={[
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/reflection-exercising-woman-mirror-gym_23-2147827899.jpg",
|
||||
alt: "Reflection of exercising woman on mirror at gym",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/muscular-brunette-woman-training-with-ropes_651396-1615.jpg",
|
||||
alt: "Muscular brunette woman training with ropes",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/stylish-blonde-girl-her-twenties-sitting-leather-chair-corner-boxing-ring_343059-141.jpg",
|
||||
alt: "Stylish blonde girl in her twenties sitting on leather chair in the corner of boxing ring",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/woman-training-gym_23-2148024361.jpg",
|
||||
alt: "Woman training in gym",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/man-training-gym_23-2148024310.jpg",
|
||||
alt: "Man training in gym",
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -141,21 +63,9 @@ export default function LandingPage() {
|
||||
textboxLayout="split"
|
||||
useInvertedBackground={true}
|
||||
features={[
|
||||
{
|
||||
title: "Heavy Lifting Zones",
|
||||
description: "Dedicated areas with Olympic-grade weights and robust power racks.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/gym-interior-with-equipment_93675-129242.jpg",
|
||||
},
|
||||
{
|
||||
title: "Elite Cardio Hub",
|
||||
description: "High-performance equipment for endurance and peak aerobic health.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/man-running-treadmill-modern-gym_1098-15195.jpg",
|
||||
},
|
||||
{
|
||||
title: "Dynamic Studio",
|
||||
description: "Versatile space for functional training and high-intensity sessions.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-stretching-gym_23-2148024318.jpg",
|
||||
},
|
||||
{ title: "Heavy Lifting Zones", description: "Dedicated areas with Olympic-grade weights and robust power racks.", imageSrc: "http://img.b2bpic.net/free-photo/gym-interior-with-equipment_93675-129242.jpg" },
|
||||
{ title: "Elite Cardio Hub", description: "High-performance equipment for endurance and peak aerobic health.", imageSrc: "http://img.b2bpic.net/free-photo/man-running-treadmill-modern-gym_1098-15195.jpg" },
|
||||
{ title: "Dynamic Studio", description: "Versatile space for functional training and high-intensity sessions.", imageSrc: "http://img.b2bpic.net/free-photo/woman-stretching-gym_23-2148024318.jpg" },
|
||||
]}
|
||||
title="UNLEASH YOUR POTENTIAL"
|
||||
description="State-of-the-art facilities designed for serious athletic performance."
|
||||
@@ -169,48 +79,10 @@ export default function LandingPage() {
|
||||
gridVariant="four-items-2x2-equal-grid"
|
||||
useInvertedBackground={false}
|
||||
products={[
|
||||
{
|
||||
id: "p1",
|
||||
name: "Gym Pro Bag",
|
||||
price: "$89",
|
||||
variant: "Premium",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/view-pair-boxing-gloves_23-2150367610.jpg",
|
||||
},
|
||||
{
|
||||
id: "p2",
|
||||
name: "Elite Shaker",
|
||||
price: "$19",
|
||||
variant: "Matte Black",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-weights-with-gym-gloves-sneakers_23-2148523323.jpg",
|
||||
},
|
||||
{
|
||||
id: "p3",
|
||||
name: "Lifting Gloves",
|
||||
price: "$35",
|
||||
variant: "Supportive",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/pair-gloves-boxing-sport_23-2150367684.jpg",
|
||||
},
|
||||
{
|
||||
id: "p4",
|
||||
name: "Pro Lifting Belt",
|
||||
price: "$65",
|
||||
variant: "Heavy Duty",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/gym-exercise-close-up_23-2149445921.jpg",
|
||||
},
|
||||
{
|
||||
id: "p5",
|
||||
name: "Resistance Set",
|
||||
price: "$45",
|
||||
variant: "Pro Kit",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/indoors-mature-woman-doing-fitness-exercises_23-2148827620.jpg",
|
||||
},
|
||||
{
|
||||
id: "p6",
|
||||
name: "Speed Rope",
|
||||
price: "$25",
|
||||
variant: "Pro Series",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/full-length-image-pretty-fitness-woman-doing-exercise-with-skipping-rope-gray-background-young-woman-with-beautiful-slim-healthy-body-posing-studio_639032-1573.jpg",
|
||||
},
|
||||
{ id: "p1", name: "Gym Pro Bag", price: "$89", variant: "Premium", imageSrc: "http://img.b2bpic.net/free-photo/view-pair-boxing-gloves_23-2150367610.jpg" },
|
||||
{ id: "p2", name: "Elite Shaker", price: "$19", variant: "Matte Black", imageSrc: "http://img.b2bpic.net/free-photo/top-view-weights-with-gym-gloves-sneakers_23-2148523323.jpg" },
|
||||
{ id: "p3", name: "Lifting Gloves", price: "$35", variant: "Supportive", imageSrc: "http://img.b2bpic.net/free-photo/pair-gloves-boxing-sport_23-2150367684.jpg" },
|
||||
{ id: "p4", name: "Pro Lifting Belt", price: "$65", variant: "Heavy Duty", imageSrc: "http://img.b2bpic.net/free-photo/gym-exercise-close-up_23-2149445921.jpg" },
|
||||
]}
|
||||
title="IRON GEAR ESSENTIALS"
|
||||
description="Elevate your training performance with our signature equipment lineup."
|
||||
@@ -223,24 +95,9 @@ export default function LandingPage() {
|
||||
textboxLayout="split"
|
||||
useInvertedBackground={true}
|
||||
metrics={[
|
||||
{
|
||||
id: "m1",
|
||||
icon: Users,
|
||||
title: "Active Members",
|
||||
value: "5,000+",
|
||||
},
|
||||
{
|
||||
id: "m2",
|
||||
icon: Award,
|
||||
title: "Transformation Goals",
|
||||
value: "12,000+",
|
||||
},
|
||||
{
|
||||
id: "m3",
|
||||
icon: Zap,
|
||||
title: "Calories Burned",
|
||||
value: "1M+",
|
||||
},
|
||||
{ id: "m1", icon: Users, title: "Active Members", value: "5,000+" },
|
||||
{ id: "m2", icon: Award, title: "Transformation Goals", value: "12,000+" },
|
||||
{ id: "m3", icon: Zap, title: "Calories Burned", value: "1M+" },
|
||||
]}
|
||||
title="THE NUMBERS DON'T LIE"
|
||||
description="Our community is built on consistency and undeniable progress."
|
||||
@@ -251,36 +108,9 @@ export default function LandingPage() {
|
||||
<TestimonialCardTwelve
|
||||
useInvertedBackground={false}
|
||||
testimonials={[
|
||||
{
|
||||
id: "t1",
|
||||
name: "John D.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/afro-american-sports-man-resting-after-workout_171337-8260.jpg",
|
||||
},
|
||||
{
|
||||
id: "t2",
|
||||
name: "Maria S.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-sports-man-happy-expression_1194-1589.jpg",
|
||||
},
|
||||
{
|
||||
id: "t3",
|
||||
name: "Karl R.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-male-boxer-posing-red-white-light_158595-4874.jpg",
|
||||
},
|
||||
{
|
||||
id: "t4",
|
||||
name: "Anna V.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-woman-with-sports-equipment-near-fitball_23-2147775540.jpg",
|
||||
},
|
||||
{
|
||||
id: "t5",
|
||||
name: "Leo K.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/strong-handsome-man-sits-floor-doing-pushups-with-dumbbells-gym_343596-1293.jpg",
|
||||
},
|
||||
{
|
||||
id: "t6",
|
||||
name: "Sara H.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/side-view-fit-man-training-outdoors_23-2150351924.jpg",
|
||||
},
|
||||
{ id: "t1", name: "John D.", imageSrc: "http://img.b2bpic.net/free-photo/afro-american-sports-man-resting-after-workout_171337-8260.jpg" },
|
||||
{ id: "t2", name: "Maria S.", imageSrc: "http://img.b2bpic.net/free-photo/young-sports-man-happy-expression_1194-1589.jpg" },
|
||||
{ id: "t3", name: "Karl R.", imageSrc: "http://img.b2bpic.net/free-photo/portrait-male-boxer-posing-red-white-light_158595-4874.jpg" },
|
||||
]}
|
||||
cardTitle="HEAR FROM OUR CHAMPS"
|
||||
cardTag="SUCCESS STORIES"
|
||||
@@ -292,21 +122,8 @@ export default function LandingPage() {
|
||||
<FaqSplitText
|
||||
useInvertedBackground={true}
|
||||
faqs={[
|
||||
{
|
||||
id: "q1",
|
||||
title: "Are beginner classes available?",
|
||||
content: "Yes, we offer specialized onboarding classes for every new member.",
|
||||
},
|
||||
{
|
||||
id: "q2",
|
||||
title: "Is the gym open 24/7?",
|
||||
content: "Our facility is open 24/7 with keycard access for all active members.",
|
||||
},
|
||||
{
|
||||
id: "q3",
|
||||
title: "Do you offer personal training?",
|
||||
content: "We have world-class personal trainers ready to customize your roadmap.",
|
||||
},
|
||||
{ id: "q1", title: "Are beginner classes available?", content: "Yes, we offer specialized onboarding classes for every new member." },
|
||||
{ id: "q2", title: "Is the gym open 24/7?", content: "Our facility is open 24/7 with keycard access for all active members." },
|
||||
]}
|
||||
sideTitle="COMMON QUESTIONS"
|
||||
sideDescription="Everything you need to know to get started with Iron Pulse."
|
||||
@@ -322,36 +139,7 @@ export default function LandingPage() {
|
||||
title="INSIGHTS FOR GAINS"
|
||||
description="Expert advice to optimize your performance and nutrition."
|
||||
blogs={[
|
||||
{
|
||||
id: "b1",
|
||||
category: "Training",
|
||||
title: "Maximize Your Lifts",
|
||||
excerpt: "Learn the proper form to increase your PR.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-beautiful-blonde-woman-sportswear-training-exercise-bike-modern-fitness-center_613910-20696.jpg",
|
||||
authorName: "Coach Sam",
|
||||
authorAvatar: "http://img.b2bpic.net/free-photo/side-view-man-locker-room-after-swimming_23-2148357070.jpg",
|
||||
date: "Oct 12, 2023",
|
||||
},
|
||||
{
|
||||
id: "b2",
|
||||
category: "Nutrition",
|
||||
title: "Fuel Your Results",
|
||||
excerpt: "What to eat post-workout for recovery.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/fitnesswoman-doing-deadlift-using-barbell-gym_651396-1605.jpg",
|
||||
authorName: "Coach Sam",
|
||||
authorAvatar: "http://img.b2bpic.net/free-photo/young-man-posing-wrestling-gear-clothing_23-2149749731.jpg",
|
||||
date: "Oct 10, 2023",
|
||||
},
|
||||
{
|
||||
id: "b3",
|
||||
category: "Wellness",
|
||||
title: "Consistency Secrets",
|
||||
excerpt: "How to stay motivated throughout the year.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/front-view-beautiful-woman-with-copy-space_23-2148499181.jpg",
|
||||
authorName: "Coach Sam",
|
||||
authorAvatar: "http://img.b2bpic.net/free-photo/portrait-young-handsome-sportsman-holds-hand-chin-dark-background_613910-19200.jpg",
|
||||
date: "Oct 8, 2023",
|
||||
},
|
||||
{ id: "b1", category: "Training", title: "Maximize Your Lifts", excerpt: "Learn the proper form to increase your PR.", imageSrc: "http://img.b2bpic.net/free-photo/young-beautiful-blonde-woman-sportswear-training-exercise-bike-modern-fitness-center_613910-20696.jpg", authorName: "Coach Sam", authorAvatar: "http://img.b2bpic.net/free-photo/side-view-man-locker-room-after-swimming_23-2148357070.jpg", date: "Oct 12, 2023" },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -359,9 +147,7 @@ export default function LandingPage() {
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactCenter
|
||||
useInvertedBackground={true}
|
||||
background={{
|
||||
variant: "sparkles-gradient",
|
||||
}}
|
||||
background={{ variant: "sparkles-gradient" }}
|
||||
tag="GET STARTED"
|
||||
title="JOIN IRON PULSE TODAY"
|
||||
description="Sign up now for a free trial week and join the strongest community in the city."
|
||||
@@ -371,30 +157,8 @@ export default function LandingPage() {
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterLogoEmphasis
|
||||
columns={[
|
||||
{
|
||||
items: [
|
||||
{
|
||||
label: "About",
|
||||
href: "#",
|
||||
},
|
||||
{
|
||||
label: "Services",
|
||||
href: "#",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
items: [
|
||||
{
|
||||
label: "Contact",
|
||||
href: "#",
|
||||
},
|
||||
{
|
||||
label: "Privacy",
|
||||
href: "#",
|
||||
},
|
||||
],
|
||||
},
|
||||
{ items: [{ label: "About" }, { label: "Services" }] },
|
||||
{ items: [{ label: "Contact" }, { label: "Privacy" }] },
|
||||
]}
|
||||
logoText="IRON PULSE"
|
||||
/>
|
||||
|
||||
Reference in New Issue
Block a user