4 Commits

Author SHA1 Message Date
482477c2e7 Update src/app/page.tsx 2026-04-23 07:58:41 +00:00
9c8cf149a3 Update src/app/contact/page.tsx 2026-04-23 07:58:41 +00:00
e13c753a0f Update src/app/classes/page.tsx 2026-04-23 07:58:40 +00:00
e7c990df83 Merge version_2 into main
Merge version_2 into main
2026-04-23 07:56:58 +00:00
3 changed files with 29 additions and 86 deletions

View File

@@ -26,19 +26,12 @@ export default function LandingPage() {
<NavbarStyleFullscreen <NavbarStyleFullscreen
navItems={[ navItems={[
{ {
name: "Home", name: "Home", id: "/"},
id: "/",
},
{ {
name: "Classes", name: "Classes", id: "/classes"},
id: "/classes",
},
{ {
name: "Contact", name: "Contact", id: "/contact"},
id: "/contact",
},
]} ]}
brandName="Urban Zen Studio"
/> />
</div> </div>
@@ -49,37 +42,20 @@ export default function LandingPage() {
useInvertedBackground={false} useInvertedBackground={false}
plans={[ plans={[
{ {
id: "p1", id: "p1", badge: "Monthly", price: "1000", subtitle: "Per month", buttons: [
badge: "Monthly",
price: "1000",
subtitle: "Per month",
buttons: [
{ {
text: "Start Today", text: "Start Today", href: "#"},
href: "#",
},
], ],
features: [ features: [
"Full access", "Full access", "3 sessions daily"],
"3 sessions daily",
],
}, },
{ {
id: "p2", id: "p2", badge: "Annual", price: "11000", subtitle: "Per year", buttons: [
badge: "Annual",
price: "11000",
subtitle: "Per year",
buttons: [
{ {
text: "Save Now", text: "Save Now", href: "#"},
href: "#",
},
], ],
features: [ features: [
"Full access", "Full access", "Priority booking", "Unlimited support"],
"Priority booking",
"Unlimited support",
],
}, },
]} ]}
title="Flexible Membership" title="Flexible Membership"
@@ -93,20 +69,11 @@ export default function LandingPage() {
useInvertedBackground={false} useInvertedBackground={false}
faqs={[ faqs={[
{ {
id: "q1", id: "q1", title: "Morning Session", content: "5:00 AM - 9:00 AM IST"},
title: "Morning Session",
content: "5:00 AM - 9:00 AM IST",
},
{ {
id: "q2", id: "q2", title: "Midday Session", content: "10:00 AM - 12:00 PM IST"},
title: "Midday Session",
content: "10:00 AM - 12:00 PM IST",
},
{ {
id: "q3", id: "q3", title: "Evening Session", content: "3:00 PM - 6:00 PM IST"},
title: "Evening Session",
content: "3:00 PM - 6:00 PM IST",
},
]} ]}
title="Studio Sessions" title="Studio Sessions"
description="Find your rhythm in our daily scheduled sessions." description="Find your rhythm in our daily scheduled sessions."
@@ -116,11 +83,11 @@ export default function LandingPage() {
<div id="footer" data-section="footer"> <div id="footer" data-section="footer">
<FooterCard <FooterCard
logoText="Urban Zen Studio" logoText=""
copyrightText="© 2025 Urban Zen Studio" copyrightText="© 2025"
/> />
</div> </div>
</ReactLenis> </ReactLenis>
</ThemeProvider> </ThemeProvider>
); );
} }

View File

@@ -26,19 +26,12 @@ export default function LandingPage() {
<NavbarStyleFullscreen <NavbarStyleFullscreen
navItems={[ navItems={[
{ {
name: "Home", name: "Home", id: "/"},
id: "/",
},
{ {
name: "Classes", name: "Classes", id: "/classes"},
id: "/classes",
},
{ {
name: "Contact", name: "Contact", id: "/contact"},
id: "/contact",
},
]} ]}
brandName="Urban Zen Studio"
/> />
</div> </div>
@@ -46,8 +39,7 @@ export default function LandingPage() {
<ContactText <ContactText
useInvertedBackground={false} useInvertedBackground={false}
background={{ background={{
variant: "plain", variant: "plain"}}
}}
text="Visit us in Pune or Mumbai. Call us at 9875568657 (Mary), 987964376 (Anne), or 906745397 (Jacob)." text="Visit us in Pune or Mumbai. Call us at 9875568657 (Mary), 987964376 (Anne), or 906745397 (Jacob)."
/> />
</div> </div>
@@ -60,41 +52,26 @@ export default function LandingPage() {
faqsAnimation="slide-up" faqsAnimation="slide-up"
faqs={[ faqs={[
{ {
id: "f-1", id: "f-1", title: "What should I bring?", content: "Just bring a water bottle and a comfortable mat."},
title: "What should I bring?",
content: "Just bring a water bottle and a comfortable mat.",
},
{ {
id: "f-2", id: "f-2", title: "Is yoga for beginners?", content: "Absolutely, our classes are designed for all levels of experience."},
title: "Is yoga for beginners?",
content: "Absolutely, our classes are designed for all levels of experience.",
},
{ {
id: "f-3", id: "f-3", title: "Do I need a booking?", content: "We recommend booking online for popular weekend sessions."},
title: "Do I need a booking?",
content: "We recommend booking online for popular weekend sessions.",
},
{ {
id: "f-4", id: "f-4", title: "What are your hours?", content: "We are open daily from 5:00 AM to 6:00 PM."},
title: "What are your hours?",
content: "We are open daily from 5:00 AM to 6:00 PM.",
},
{ {
id: "f-5", id: "f-5", title: "Are private lessons available?", content: "Yes, contact our lead instructors for personal training schedules."},
title: "Are private lessons available?",
content: "Yes, contact our lead instructors for personal training schedules.",
},
]} ]}
/> />
</div> </div>
<div id="footer" data-section="footer"> <div id="footer" data-section="footer">
<FooterCard <FooterCard
logoText="Urban Zen Studio" logoText=""
copyrightText="© 2025 Urban Zen Studio" copyrightText="© 2025"
/> />
</div> </div>
</ReactLenis> </ReactLenis>
</ThemeProvider> </ThemeProvider>
); );
} }

View File

@@ -32,14 +32,13 @@ export default function LandingPage() {
{ name: "Classes", id: "/classes" }, { name: "Classes", id: "/classes" },
{ name: "Contact", id: "/contact" }, { name: "Contact", id: "/contact" },
]} ]}
brandName="Urban Zen Studio"
/> />
</div> </div>
<div id="footer" data-section="footer"> <div id="footer" data-section="footer">
<FooterCard <FooterCard
logoText="Urban Zen Studio" logoText=""
copyrightText="© 2025 Urban Zen Studio" copyrightText="© 2025"
/> />
</div> </div>