Merge version_1 into main #2

Merged
bender merged 1 commits from version_1 into main 2026-04-26 13:59:48 +00:00

View File

@@ -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 (
<ThemeProvider
defaultButtonVariant="shift-hover"
@@ -25,26 +26,11 @@ export default function LandingPage() {
<div id="nav" data-section="nav">
<NavbarLayoutFloatingOverlay
navItems={[
{
name: "Home",
id: "/",
},
{
name: "Services",
id: "/services",
},
{
name: "About",
id: "/about",
},
{
name: "Gallery",
id: "/gallery",
},
{
name: "Contact",
id: "/contact",
},
{ name: "Home", id: "/" },
{ name: "Services", id: "/services" },
{ name: "About", id: "/about" },
{ name: "Gallery", id: "/gallery" },
{ name: "Contact", id: "/contact" },
]}
brandName="Veloura"
/>
@@ -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() {
<FooterSimple
columns={[
{
title: "Navigation",
items: [
{
label: "Services",
href: "/services",
},
{
label: "About Us",
href: "/about",
},
{
label: "Gallery",
href: "/gallery",
},
{
label: "Contact",
href: "/contact",
},
title: "Navigation", items: [
{ label: "Services", href: "/services" },
{ label: "About Us", href: "/about" },
{ label: "Gallery", href: "/gallery" },
{ label: "Contact", href: "/contact" },
],
},
{
title: "Legal",
items: [
{
label: "Privacy Policy",
href: "#",
},
{
label: "Terms of Service",
href: "#",
},
title: "Legal", items: [
{ label: "Privacy Policy", href: "#" },
{ label: "Terms of Service", href: "#" },
],
},
]}
@@ -150,4 +96,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}