Update src/app/about/page.tsx
This commit is contained in:
@@ -5,7 +5,7 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
|||||||
import NavbarStyleMinimal from '@/components/navbar/NavbarStyleMinimal';
|
import NavbarStyleMinimal from '@/components/navbar/NavbarStyleMinimal';
|
||||||
import TextAbout from '@/components/sections/about/TextAbout';
|
import TextAbout from '@/components/sections/about/TextAbout';
|
||||||
import TeamCardOne from '@/components/sections/team/TeamCardOne';
|
import TeamCardOne from '@/components/sections/team/TeamCardOne';
|
||||||
import TestimonialCardFifteen from '@/components/sections/testimonial/TestimonialCardFifteen';
|
import FeatureCardOne from '@/components/sections/feature/FeatureCardOne';
|
||||||
import FooterSimple from '@/components/sections/footer/FooterSimple';
|
import FooterSimple from '@/components/sections/footer/FooterSimple';
|
||||||
|
|
||||||
export default function AboutPage() {
|
export default function AboutPage() {
|
||||||
@@ -26,8 +26,7 @@ export default function AboutPage() {
|
|||||||
<NavbarStyleMinimal
|
<NavbarStyleMinimal
|
||||||
brandName="Plastilin"
|
brandName="Plastilin"
|
||||||
button={{
|
button={{
|
||||||
text: "Book a Class",
|
text: "Book a Class", href: "/contact"
|
||||||
href: "/contact"
|
|
||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
@@ -50,32 +49,16 @@ export default function AboutPage() {
|
|||||||
tag="Our Team"
|
tag="Our Team"
|
||||||
members={[
|
members={[
|
||||||
{
|
{
|
||||||
id: "1",
|
id: "1", name: "Priya Sharma", role: "Founder & Vinyasa Expert", imageSrc: "https://img.b2bpic.net/free-photo/front-view-woman-holding-yoga-mat_23-2149832782.jpg", imageAlt: "Priya Sharma"
|
||||||
name: "Priya Sharma",
|
|
||||||
role: "Founder & Vinyasa Expert",
|
|
||||||
imageSrc: "https://img.b2bpic.net/free-photo/front-view-woman-holding-yoga-mat_23-2149832782.jpg",
|
|
||||||
imageAlt: "Priya Sharma"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "2",
|
id: "2", name: "David Chen", role: "Hatha Yoga Specialist", imageSrc: "https://img.b2bpic.net/free-photo/adorable-lovely-smiling-girl-with-long-wavy-hairstyle-black-sport-top-is-holding-arms-chest-looking-window-isolated-background_291650-2273.jpg", imageAlt: "David Chen"
|
||||||
name: "David Chen",
|
|
||||||
role: "Hatha Yoga Specialist",
|
|
||||||
imageSrc: "https://img.b2bpic.net/free-photo/adorable-lovely-smiling-girl-with-long-wavy-hairstyle-black-sport-top-is-holding-arms-chest-looking-window-isolated-background_291650-2273.jpg",
|
|
||||||
imageAlt: "David Chen"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "3",
|
id: "3", name: "Maya Patel", role: "Restorative Yoga Instructor", imageSrc: "https://img.b2bpic.net/free-photo/medium-shot-smiley-woman-with-mat_23-2148877104.jpg", imageAlt: "Maya Patel"
|
||||||
name: "Maya Patel",
|
|
||||||
role: "Restorative Yoga Instructor",
|
|
||||||
imageSrc: "https://img.b2bpic.net/free-photo/medium-shot-smiley-woman-with-mat_23-2148877104.jpg",
|
|
||||||
imageAlt: "Maya Patel"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "4",
|
id: "4", name: "James Wilson", role: "Power Yoga Coach", imageSrc: "https://img.b2bpic.net/free-photo/portrait-caucasian-woman-practicing-yoga-home_158595-5430.jpg", imageAlt: "James Wilson"
|
||||||
name: "James Wilson",
|
|
||||||
role: "Power Yoga Coach",
|
|
||||||
imageSrc: "https://img.b2bpic.net/free-photo/portrait-caucasian-woman-practicing-yoga-home_158595-5430.jpg",
|
|
||||||
imageAlt: "James Wilson"
|
|
||||||
}
|
}
|
||||||
]}
|
]}
|
||||||
textboxLayout="default"
|
textboxLayout="default"
|
||||||
@@ -92,16 +75,10 @@ export default function AboutPage() {
|
|||||||
tag="Philosophy"
|
tag="Philosophy"
|
||||||
features={[
|
features={[
|
||||||
{
|
{
|
||||||
title: "Authentic Practice",
|
title: "Authentic Practice", description: "We honor traditional yoga teachings while adapting to modern needs and lifestyles", imageSrc: "https://img.b2bpic.net/free-photo/woman-doing-meditation-nature-dawn_651396-3481.jpg", imageAlt: "Authentic yoga practice"
|
||||||
description: "We honor traditional yoga teachings while adapting to modern needs and lifestyles",
|
|
||||||
imageSrc: "https://img.b2bpic.net/free-photo/woman-doing-meditation-nature-dawn_651396-3481.jpg",
|
|
||||||
imageAlt: "Authentic yoga practice"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Inclusive Community",
|
title: "Inclusive Community", description: "Our doors are open to all bodies, backgrounds, and levels of experience", imageSrc: "https://img.b2bpic.net/free-photo/yoga-training-tropical-location_1163-3362.jpg", imageAlt: "Inclusive community"
|
||||||
description: "Our doors are open to all bodies, backgrounds, and levels of experience",
|
|
||||||
imageSrc: "https://img.b2bpic.net/free-photo/yoga-training-tropical-location_1163-3362.jpg",
|
|
||||||
imageAlt: "Inclusive community"
|
|
||||||
}
|
}
|
||||||
]}
|
]}
|
||||||
textboxLayout="default"
|
textboxLayout="default"
|
||||||
@@ -114,8 +91,7 @@ export default function AboutPage() {
|
|||||||
<FooterSimple
|
<FooterSimple
|
||||||
columns={[
|
columns={[
|
||||||
{
|
{
|
||||||
title: "Navigate",
|
title: "Navigate", items: [
|
||||||
items: [
|
|
||||||
{ label: "Home", href: "/" },
|
{ label: "Home", href: "/" },
|
||||||
{ label: "Classes", href: "/classes" },
|
{ label: "Classes", href: "/classes" },
|
||||||
{ label: "About", href: "/about" },
|
{ label: "About", href: "/about" },
|
||||||
@@ -123,8 +99,7 @@ export default function AboutPage() {
|
|||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Community",
|
title: "Community", items: [
|
||||||
items: [
|
|
||||||
{ label: "Meet Our Team", href: "/#team" },
|
{ label: "Meet Our Team", href: "/#team" },
|
||||||
{ label: "Member Stories", href: "/#testimonials" },
|
{ label: "Member Stories", href: "/#testimonials" },
|
||||||
{ label: "Events", href: "/contact" },
|
{ label: "Events", href: "/contact" },
|
||||||
@@ -132,8 +107,7 @@ export default function AboutPage() {
|
|||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Support",
|
title: "Support", items: [
|
||||||
items: [
|
|
||||||
{ label: "Contact Us", href: "/contact" },
|
{ label: "Contact Us", href: "/contact" },
|
||||||
{ label: "FAQ", href: "/#faq" },
|
{ label: "FAQ", href: "/#faq" },
|
||||||
{ label: "Privacy Policy", href: "#" },
|
{ label: "Privacy Policy", href: "#" },
|
||||||
|
|||||||
Reference in New Issue
Block a user