diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index 9c6f1d7..b690985 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -6,8 +6,9 @@ import FooterSimple from '@/components/sections/footer/FooterSimple'; import MetricSplitMediaAbout from '@/components/sections/about/MetricSplitMediaAbout'; import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; import TeamCardEleven from '@/components/sections/team/TeamCardEleven'; +import Link from "next/link"; -export default function LandingPage() { +export default function AboutPage() { return ( @@ -56,14 +42,8 @@ export default function LandingPage() { title="The Veloura Story" description="Founded by beauty enthusiasts with a vision for perfection, Veloura has grown from a boutique studio into a sanctuary of elegance. We believe beauty is a ritual, not a chore." metrics={[ - { - value: "10+", - title: "Years Experience", - }, - { - value: "5000+", - title: "Happy Clients", - }, + { value: "10+", title: "Years Experience" }, + { value: "5000+", title: "Happy Clients" }, ]} imageSrc="http://img.b2bpic.net/free-photo/make-up-artist-work-her-beauty-visage-studio-salon-woman-professional-make-up-master-beauty-club-concept_627829-9070.jpg" mediaAnimation="slide-up" @@ -78,26 +58,12 @@ export default function LandingPage() { useInvertedBackground={false} groups={[ { - id: "g1", - groupTitle: "Artistry Team", - members: [ + id: "g1", groupTitle: "Artistry Team", members: [ { - id: "mem1", - title: "Sarah", - subtitle: "Senior Stylist", - detail: "Expert in modern bridal styles.", - imageSrc: "http://img.b2bpic.net/free-photo/pretty-smiling-beauty-blogger-dreamily-looking-camera-holding-make-up-brushes-hand-while-recording-new-video-vlog_574295-1364.jpg", - }, + id: "mem1", title: "Sarah", subtitle: "Senior Stylist", detail: "Expert in modern bridal styles.", imageSrc: "http://img.b2bpic.net/free-photo/pretty-smiling-beauty-blogger-dreamily-looking-camera-holding-make-up-brushes-hand-while-recording-new-video-vlog_574295-1364.jpg"}, { - id: "mem2", - title: "James", - subtitle: "Skincare Specialist", - detail: "Master of rejuvenating facials.", - imageSrc: "http://img.b2bpic.net/free-photo/portrait-serious-student-wearing-white-shirt-black-hat-having-thoughtful-expression-looking-ahead-him-while-listening-audiobook-earphones-sitting-indoors-front-open-laptop-pc_273609-1718.jpg", - }, + id: "mem2", title: "James", subtitle: "Skincare Specialist", detail: "Master of rejuvenating facials.", imageSrc: "http://img.b2bpic.net/free-photo/portrait-serious-student-wearing-white-shirt-black-hat-having-thoughtful-expression-looking-ahead-him-while-listening-audiobook-earphones-sitting-indoors-front-open-laptop-pc_273609-1718.jpg"}, ], - imageSrc: "http://img.b2bpic.net/free-photo/glamour-female-model-with-short-brown-hair-black-dress-posing-near-light-wall_613910-7032.jpg?_wi=2", - imageAlt: "Pretty smiling beauty blogger dreamily looking in camera holding make up brushes in hand while recording new video for vlog", }, ]} title="Meet Our Artisans" @@ -109,37 +75,17 @@ export default function LandingPage() { ); -} +} \ No newline at end of file