Update src/app/page.tsx
This commit is contained in:
161
src/app/page.tsx
161
src/app/page.tsx
@@ -12,6 +12,7 @@ import PricingCardThree from '@/components/sections/pricing/PricingCardThree';
|
||||
import TeamCardOne from '@/components/sections/team/TeamCardOne';
|
||||
import TestimonialCardFifteen from '@/components/sections/testimonial/TestimonialCardFifteen';
|
||||
import TextAbout from '@/components/sections/about/TextAbout';
|
||||
import { Zap } from 'lucide-react';
|
||||
|
||||
export default function LandingPage() {
|
||||
return (
|
||||
@@ -31,39 +32,25 @@ export default function LandingPage() {
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingInline
|
||||
navItems={[
|
||||
{
|
||||
name: "About",
|
||||
id: "#about",
|
||||
},
|
||||
{
|
||||
name: "Classes",
|
||||
id: "#classes",
|
||||
},
|
||||
{
|
||||
name: "Pricing",
|
||||
id: "#pricing",
|
||||
},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "#contact",
|
||||
},
|
||||
{ name: "About", id: "#about" },
|
||||
{ name: "Classes", id: "#classes" },
|
||||
{ name: "Pricing", id: "#pricing" },
|
||||
{ name: "Contact", id: "#contact" },
|
||||
]}
|
||||
brandName="PurePilates"
|
||||
button={{ text: "Join Now", href: "#contact" }}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroBillboardScroll
|
||||
background={{
|
||||
variant: "plain",
|
||||
}}
|
||||
variant: "plain"}}
|
||||
title="Find Your Balance."
|
||||
description="Transform your strength, mobility, and mind with expert-led Pilates sessions designed for every body."
|
||||
buttons={[
|
||||
{
|
||||
text: "Book a Class",
|
||||
href: "#contact",
|
||||
},
|
||||
text: "Book a Class", href: "#contact"},
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/woman-performing-stretching-exercise_107420-96370.jpg"
|
||||
/>
|
||||
@@ -75,8 +62,7 @@ export default function LandingPage() {
|
||||
title="Empowering Your Wellness Journey"
|
||||
buttons={[
|
||||
{
|
||||
text: "Learn More",
|
||||
},
|
||||
text: "Learn More"},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -87,29 +73,17 @@ export default function LandingPage() {
|
||||
useInvertedBackground={true}
|
||||
features={[
|
||||
{
|
||||
title: "Mat Pilates",
|
||||
description: "Strengthen your core with controlled mat movements.",
|
||||
buttonIcon: "Zap",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/female-trainer-assisting-woman-with-stretching-exercise-reformer_107420-96382.jpg",
|
||||
},
|
||||
title: "Mat Pilates", description: "Strengthen your core with controlled mat movements.", buttonIcon: Zap,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/female-trainer-assisting-woman-with-stretching-exercise-reformer_107420-96382.jpg"},
|
||||
{
|
||||
title: "Reformer Flow",
|
||||
description: "Full-body workout on professional Pilates reformers.",
|
||||
buttonIcon: "Zap",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/people-pilates-reformer-class-exercising-their-bodies_23-2150858008.jpg",
|
||||
},
|
||||
title: "Reformer Flow", description: "Full-body workout on professional Pilates reformers.", buttonIcon: Zap,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/people-pilates-reformer-class-exercising-their-bodies_23-2150858008.jpg"},
|
||||
{
|
||||
title: "Advanced Strength",
|
||||
description: "Push your limits with high-intensity movements.",
|
||||
buttonIcon: "Zap",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/closeup-mixed-race-african-american-woman-makes-stretching-routin-floor-sunny-loft-legs-streching_633478-2124.jpg",
|
||||
},
|
||||
title: "Advanced Strength", description: "Push your limits with high-intensity movements.", buttonIcon: Zap,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/closeup-mixed-race-african-american-woman-makes-stretching-routin-floor-sunny-loft-legs-streching_633478-2124.jpg"},
|
||||
{
|
||||
title: "Mindful Mobility",
|
||||
description: "Focus on flexibility, breath, and restorative flow.",
|
||||
buttonIcon: "Zap",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/group-sporty-people-bird-dog-exercise_1163-4978.jpg",
|
||||
},
|
||||
title: "Mindful Mobility", description: "Focus on flexibility, breath, and restorative flow.", buttonIcon: Zap,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/group-sporty-people-bird-dog-exercise_1163-4978.jpg"},
|
||||
]}
|
||||
title="Our Signature Classes"
|
||||
description="Whether you're a beginner or an advanced practitioner, we have a class for you."
|
||||
@@ -123,49 +97,28 @@ export default function LandingPage() {
|
||||
useInvertedBackground={false}
|
||||
plans={[
|
||||
{
|
||||
id: "1",
|
||||
price: "$120/mo",
|
||||
name: "Starter",
|
||||
buttons: [
|
||||
id: "1", price: "$120/mo", name: "Starter", buttons: [
|
||||
{
|
||||
text: "Select",
|
||||
},
|
||||
text: "Select"},
|
||||
],
|
||||
features: [
|
||||
"4 Classes Monthly",
|
||||
"Group Access",
|
||||
"Studio Access",
|
||||
],
|
||||
"4 Classes Monthly", "Group Access", "Studio Access"],
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
price: "$220/mo",
|
||||
name: "Pro",
|
||||
buttons: [
|
||||
id: "2", price: "$220/mo", name: "Pro", buttons: [
|
||||
{
|
||||
text: "Select",
|
||||
},
|
||||
text: "Select"},
|
||||
],
|
||||
features: [
|
||||
"12 Classes Monthly",
|
||||
"Priority Booking",
|
||||
"Free Workshops",
|
||||
],
|
||||
"12 Classes Monthly", "Priority Booking", "Free Workshops"],
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
price: "$350/mo",
|
||||
name: "Unlimited",
|
||||
buttons: [
|
||||
id: "3", price: "$350/mo", name: "Unlimited", buttons: [
|
||||
{
|
||||
text: "Select",
|
||||
},
|
||||
text: "Select"},
|
||||
],
|
||||
features: [
|
||||
"Unlimited Classes",
|
||||
"All Access",
|
||||
"Guest Passes",
|
||||
],
|
||||
"Unlimited Classes", "All Access", "Guest Passes"],
|
||||
},
|
||||
]}
|
||||
title="Membership Options"
|
||||
@@ -181,29 +134,13 @@ export default function LandingPage() {
|
||||
useInvertedBackground={true}
|
||||
members={[
|
||||
{
|
||||
id: "1",
|
||||
name: "Elena Ross",
|
||||
role: "Head Instructor",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/attractive-athletic-girl-standing-near-gym-equipment-healthy-lifestyle_78826-3376.jpg",
|
||||
},
|
||||
id: "1", name: "Elena Ross", role: "Head Instructor", imageSrc: "http://img.b2bpic.net/free-photo/attractive-athletic-girl-standing-near-gym-equipment-healthy-lifestyle_78826-3376.jpg"},
|
||||
{
|
||||
id: "2",
|
||||
name: "Mark Chen",
|
||||
role: "Reformer Specialist",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/side-view-people-doing-pilates_23-2150678638.jpg",
|
||||
},
|
||||
id: "2", name: "Mark Chen", role: "Reformer Specialist", imageSrc: "http://img.b2bpic.net/free-photo/side-view-people-doing-pilates_23-2150678638.jpg"},
|
||||
{
|
||||
id: "3",
|
||||
name: "Sarah Miller",
|
||||
role: "Mobility Coach",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/front-view-woman-with-physiotherapy-mat_23-2148780809.jpg",
|
||||
},
|
||||
id: "3", name: "Sarah Miller", role: "Mobility Coach", imageSrc: "http://img.b2bpic.net/free-photo/front-view-woman-with-physiotherapy-mat_23-2148780809.jpg"},
|
||||
{
|
||||
id: "4",
|
||||
name: "Jessica Lee",
|
||||
role: "Advanced Pilates Teacher",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/happy-woman-sitting-yoga-mat-posing_23-2148478591.jpg",
|
||||
},
|
||||
id: "4", name: "Jessica Lee", role: "Advanced Pilates Teacher", imageSrc: "http://img.b2bpic.net/free-photo/happy-woman-sitting-yoga-mat-posing_23-2148478591.jpg"},
|
||||
]}
|
||||
title="Meet Your Instructors"
|
||||
description="Our certified team is dedicated to guiding your Pilates growth."
|
||||
@@ -218,25 +155,15 @@ export default function LandingPage() {
|
||||
author="Laura B."
|
||||
avatars={[
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/side-view-young-women-gym_23-2148419835.jpg",
|
||||
alt: "Laura",
|
||||
},
|
||||
src: "http://img.b2bpic.net/free-photo/side-view-young-women-gym_23-2148419835.jpg", alt: "Laura"},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/black-caucasian-women-standing-with-rolling-mats-studio-with-big-windows_1157-52213.jpg",
|
||||
alt: "Michael",
|
||||
},
|
||||
src: "http://img.b2bpic.net/free-photo/black-caucasian-women-standing-with-rolling-mats-studio-with-big-windows_1157-52213.jpg", alt: "Michael"},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/endurance-women-fitness-concept-goodlooking-young-healthy-sporty-female-athlete-finish-productive-training-take-breath-after-exercise-sit-with-legs-crossed-gym-floor-smiling-satisfied_197531-30358.jpg",
|
||||
alt: "Chloe",
|
||||
},
|
||||
src: "http://img.b2bpic.net/free-photo/endurance-women-fitness-concept-goodlooking-young-healthy-sporty-female-athlete-finish-productive-training-take-breath-after-exercise-sit-with-legs-crossed-gym-floor-smiling-satisfied_197531-30358.jpg", alt: "Chloe"},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/young-adult-doing-indoor-sport-gym_23-2149205541.jpg",
|
||||
alt: "David",
|
||||
},
|
||||
src: "http://img.b2bpic.net/free-photo/young-adult-doing-indoor-sport-gym_23-2149205541.jpg", alt: "David"},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/beautiful-girl-is-engaged-gym_1157-20603.jpg",
|
||||
alt: "Anna",
|
||||
},
|
||||
src: "http://img.b2bpic.net/free-photo/beautiful-girl-is-engaged-gym_1157-20603.jpg", alt: "Anna"},
|
||||
]}
|
||||
ratingAnimation="slide-up"
|
||||
avatarsAnimation="slide-up"
|
||||
@@ -249,20 +176,11 @@ export default function LandingPage() {
|
||||
useInvertedBackground={true}
|
||||
faqs={[
|
||||
{
|
||||
id: "1",
|
||||
title: "Do I need experience?",
|
||||
content: "No, we have beginner-friendly classes.",
|
||||
},
|
||||
id: "1", title: "Do I need experience?", content: "No, we have beginner-friendly classes."},
|
||||
{
|
||||
id: "2",
|
||||
title: "What should I bring?",
|
||||
content: "Just comfortable workout clothes and water.",
|
||||
},
|
||||
id: "2", title: "What should I bring?", content: "Just comfortable workout clothes and water."},
|
||||
{
|
||||
id: "3",
|
||||
title: "Can I cancel?",
|
||||
content: "Yes, memberships can be managed online.",
|
||||
},
|
||||
id: "3", title: "Can I cancel?", content: "Yes, memberships can be managed online."},
|
||||
]}
|
||||
title="Common Questions"
|
||||
description="Everything you need to know about starting your practice."
|
||||
@@ -274,8 +192,7 @@ export default function LandingPage() {
|
||||
<ContactSplit
|
||||
useInvertedBackground={false}
|
||||
background={{
|
||||
variant: "plain",
|
||||
}}
|
||||
variant: "plain"}}
|
||||
tag="Contact"
|
||||
title="Start Your Practice"
|
||||
description="Join our studio today for a free introductory consultation."
|
||||
|
||||
Reference in New Issue
Block a user