Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| d579b5839d | |||
| 4266879268 |
54
src/app/about/page.tsx
Normal file
54
src/app/about/page.tsx
Normal file
@@ -0,0 +1,54 @@
|
|||||||
|
"use client";
|
||||||
|
|
||||||
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||||
|
import ReactLenis from "lenis/react";
|
||||||
|
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
|
||||||
|
import TextAbout from '@/components/sections/about/TextAbout';
|
||||||
|
import FooterBase from '@/components/sections/footer/FooterBase';
|
||||||
|
|
||||||
|
export default function AboutPage() {
|
||||||
|
return (
|
||||||
|
<ThemeProvider
|
||||||
|
defaultButtonVariant="shift-hover"
|
||||||
|
defaultTextAnimation="entrance-slide"
|
||||||
|
borderRadius="pill"
|
||||||
|
contentWidth="small"
|
||||||
|
sizing="largeSmallSizeMediumTitles"
|
||||||
|
background="circleGradient"
|
||||||
|
cardStyle="gradient-bordered"
|
||||||
|
primaryButtonStyle="flat"
|
||||||
|
secondaryButtonStyle="radial-glow"
|
||||||
|
headingFontWeight="normal"
|
||||||
|
>
|
||||||
|
<ReactLenis root>
|
||||||
|
<NavbarStyleFullscreen
|
||||||
|
navItems={[
|
||||||
|
{ name: "Home", id: "/" },
|
||||||
|
{ name: "Services", id: "/#services" },
|
||||||
|
{ name: "About", id: "/about" },
|
||||||
|
{ name: "Gallery", id: "/#gallery" },
|
||||||
|
{ name: "Book Now", id: "/#contact" },
|
||||||
|
]}
|
||||||
|
brandName="POSH"
|
||||||
|
/>
|
||||||
|
|
||||||
|
<div id="about" data-section="about" className="pt-32 pb-20">
|
||||||
|
<TextAbout
|
||||||
|
useInvertedBackground={false}
|
||||||
|
title="At Posh Hair Studio, we believe your hair is a statement. Our team blends artistry with technique to create looks that feel unmistakably you."
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<FooterBase
|
||||||
|
columns={[
|
||||||
|
{ title: "Services", items: [{ label: "Cut & Style", href: "/#services" }, { label: "Color & Highlights", href: "/#services" }, { label: "Bridal Packages", href: "/#services" }] },
|
||||||
|
{ title: "About", items: [{ label: "Our Story", href: "/about" }, { label: "Meet the Team", href: "/#team" }, { label: "Contact", href: "/#contact" }] },
|
||||||
|
{ title: "Legal", items: [{ label: "Privacy Policy", href: "#" }, { label: "Terms of Service", href: "#" }] },
|
||||||
|
]}
|
||||||
|
logoText="POSH"
|
||||||
|
copyrightText="© 2025 Posh Hair Studio | All Rights Reserved"
|
||||||
|
/>
|
||||||
|
</ReactLenis>
|
||||||
|
</ThemeProvider>
|
||||||
|
);
|
||||||
|
}
|
||||||
235
src/app/page.tsx
235
src/app/page.tsx
@@ -28,26 +28,11 @@ export default function LandingPage() {
|
|||||||
<div id="nav" data-section="nav">
|
<div id="nav" data-section="nav">
|
||||||
<NavbarStyleFullscreen
|
<NavbarStyleFullscreen
|
||||||
navItems={[
|
navItems={[
|
||||||
{
|
{ name: "Home", id: "home" },
|
||||||
name: "Home",
|
{ name: "Services", id: "services" },
|
||||||
id: "home",
|
{ name: "About", id: "/about" },
|
||||||
},
|
{ name: "Gallery", id: "gallery" },
|
||||||
{
|
{ name: "Book Now", id: "contact" },
|
||||||
name: "Services",
|
|
||||||
id: "services",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name: "About",
|
|
||||||
id: "about",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name: "Gallery",
|
|
||||||
id: "gallery",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name: "Book Now",
|
|
||||||
id: "contact",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
brandName="POSH"
|
brandName="POSH"
|
||||||
/>
|
/>
|
||||||
@@ -55,92 +40,33 @@ export default function LandingPage() {
|
|||||||
|
|
||||||
<div id="home" data-section="home">
|
<div id="home" data-section="home">
|
||||||
<HeroSplitKpi
|
<HeroSplitKpi
|
||||||
background={{
|
background={{ variant: "sparkles-gradient" }}
|
||||||
variant: "sparkles-gradient",
|
|
||||||
}}
|
|
||||||
title="Experience the Art of Hair"
|
title="Experience the Art of Hair"
|
||||||
description="Precision cuts. Luxurious color. Your signature look. At Posh Hair Studio, we craft styles that feel unmistakably yours."
|
description="Precision cuts. Luxurious color. Your signature look. At Posh Hair Studio, we craft styles that feel unmistakably yours."
|
||||||
kpis={[
|
kpis={[
|
||||||
{
|
{ value: "5.0", label: "Google Rating" },
|
||||||
value: "5.0",
|
{ value: "10+", label: "Years Serving" },
|
||||||
label: "Google Rating",
|
{ value: "100%", label: "Client Satisfaction" },
|
||||||
},
|
|
||||||
{
|
|
||||||
value: "10+",
|
|
||||||
label: "Years Serving",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
value: "100%",
|
|
||||||
label: "Client Satisfaction",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
enableKpiAnimation={true}
|
enableKpiAnimation={true}
|
||||||
buttons={[
|
buttons={[{ text: "Book Your Appointment", href: "#contact" }]}
|
||||||
{
|
|
||||||
text: "Book Your Appointment",
|
|
||||||
href: "#contact",
|
|
||||||
},
|
|
||||||
]}
|
|
||||||
imageSrc="http://img.b2bpic.net/free-photo/professional-hairdresser-styling-hair-client_23-2147769815.jpg"
|
imageSrc="http://img.b2bpic.net/free-photo/professional-hairdresser-styling-hair-client_23-2147769815.jpg"
|
||||||
imageAlt="Posh Hair Studio signature style"
|
imageAlt="Posh Hair Studio signature style"
|
||||||
mediaAnimation="blur-reveal"
|
mediaAnimation="blur-reveal"
|
||||||
avatars={[
|
avatars={[
|
||||||
{
|
{ src: "http://img.b2bpic.net/free-photo/team-bride-celebrating-before-wedding_23-2149329119.jpg", alt: "Client 1" },
|
||||||
src: "http://img.b2bpic.net/free-photo/team-bride-celebrating-before-wedding_23-2149329119.jpg",
|
{ src: "http://img.b2bpic.net/free-photo/smiling-african-american-girl-sitting-cafe_1262-3083.jpg", alt: "Client 2" },
|
||||||
alt: "Client 1",
|
{ src: "http://img.b2bpic.net/free-photo/side-view-beautiful-woman-with-folded-arms-looking-camera_23-2147876783.jpg", alt: "Client 3" },
|
||||||
},
|
{ src: "http://img.b2bpic.net/free-photo/smiling-woman-talking-phone-with-her-friend_1153-11.jpg", alt: "Client 4" },
|
||||||
{
|
{ src: "http://img.b2bpic.net/free-photo/closeup-happy-young-caucasian-girl-with-wide-smile-looks-camera-blurred-background-brunette-with-long-hair-wears-green-shirt-emotions-people-concept_197531-32280.jpg", alt: "Client 5" },
|
||||||
src: "http://img.b2bpic.net/free-photo/smiling-african-american-girl-sitting-cafe_1262-3083.jpg",
|
|
||||||
alt: "Client 2",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
src: "http://img.b2bpic.net/free-photo/side-view-beautiful-woman-with-folded-arms-looking-camera_23-2147876783.jpg",
|
|
||||||
alt: "Client 3",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
src: "http://img.b2bpic.net/free-photo/smiling-woman-talking-phone-with-her-friend_1153-11.jpg",
|
|
||||||
alt: "Client 4",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
src: "http://img.b2bpic.net/free-photo/closeup-happy-young-caucasian-girl-with-wide-smile-looks-camera-blurred-background-brunette-with-long-hair-wears-green-shirt-emotions-people-concept_197531-32280.jpg",
|
|
||||||
alt: "Client 5",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
avatarText="Join 500+ happy clients"
|
avatarText="Join 500+ happy clients"
|
||||||
marqueeItems={[
|
marqueeItems={[
|
||||||
{
|
{ type: "text", text: "Luxury Styling" },
|
||||||
type: "text",
|
{ type: "text", text: "Bespoke Color" },
|
||||||
text: "Luxury Styling",
|
{ type: "text", text: "Precision Cuts" },
|
||||||
},
|
{ type: "text", text: "Bridal Packages" },
|
||||||
{
|
{ type: "text", text: "Modern Studio" },
|
||||||
type: "text",
|
|
||||||
text: "Bespoke Color",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
type: "text",
|
|
||||||
text: "Precision Cuts",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
type: "text",
|
|
||||||
text: "Bridal Packages",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
type: "text",
|
|
||||||
text: "Modern Studio",
|
|
||||||
},
|
|
||||||
]}
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div id="about" data-section="about">
|
|
||||||
<TextAbout
|
|
||||||
useInvertedBackground={false}
|
|
||||||
title="At Posh Hair Studio, we believe your hair is a statement. Our team blends artistry with technique to create looks that feel unmistakably you."
|
|
||||||
buttons={[
|
|
||||||
{
|
|
||||||
text: "Meet the Team",
|
|
||||||
href: "#team",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
@@ -150,24 +76,8 @@ export default function LandingPage() {
|
|||||||
animationType="slide-up"
|
animationType="slide-up"
|
||||||
textboxLayout="default"
|
textboxLayout="default"
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
negativeCard={{
|
negativeCard={{ items: ["Consultation Required", "Hair Correction", "Advanced Treatments", "Extension Maintenance", "Root Touch-ups"] }}
|
||||||
items: [
|
positiveCard={{ items: ["Precision Cuts & Styling", "Bespoke Balayage & Color", "Bridal & Formal Styling", "Deep Conditioning Treatments", "Custom Glossing"] }}
|
||||||
"Consultation Required",
|
|
||||||
"Hair Correction",
|
|
||||||
"Advanced Treatments",
|
|
||||||
"Extension Maintenance",
|
|
||||||
"Root Touch-ups",
|
|
||||||
],
|
|
||||||
}}
|
|
||||||
positiveCard={{
|
|
||||||
items: [
|
|
||||||
"Precision Cuts & Styling",
|
|
||||||
"Bespoke Balayage & Color",
|
|
||||||
"Bridal & Formal Styling",
|
|
||||||
"Deep Conditioning Treatments",
|
|
||||||
"Custom Glossing",
|
|
||||||
],
|
|
||||||
}}
|
|
||||||
title="Elevated Services"
|
title="Elevated Services"
|
||||||
description="From precision cuts to bespoke color transformations, discover your next look."
|
description="From precision cuts to bespoke color transformations, discover your next look."
|
||||||
/>
|
/>
|
||||||
@@ -179,41 +89,11 @@ export default function LandingPage() {
|
|||||||
textboxLayout="split"
|
textboxLayout="split"
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
testimonials={[
|
testimonials={[
|
||||||
{
|
{ id: "1", name: "Sarah M.", handle: "@sarah_m", testimonial: "Absolutely the best experience I've ever had at a salon. My color is exactly what I wanted.", imageSrc: "http://img.b2bpic.net/free-photo/team-bride-celebrating-before-wedding_23-2149329119.jpg" },
|
||||||
id: "1",
|
{ id: "2", name: "Jordan L.", handle: "@jordan_l", testimonial: "I've been coming here for two years and I'll never go anywhere else. They're incredibly talented.", imageSrc: "http://img.b2bpic.net/free-photo/smiling-african-american-girl-sitting-cafe_1262-3083.jpg" },
|
||||||
name: "Sarah M.",
|
{ id: "3", name: "Priya K.", handle: "@priya_k", testimonial: "Walked out feeling like a new person. Worth every penny.", imageSrc: "http://img.b2bpic.net/free-photo/side-view-beautiful-woman-with-folded-arms-looking-camera_23-2147876783.jpg" },
|
||||||
handle: "@sarah_m",
|
{ id: "4", name: "Alex R.", handle: "@alex_r", testimonial: "The atmosphere is so relaxing and the stylists really listen to you.", imageSrc: "http://img.b2bpic.net/free-photo/smiling-woman-talking-phone-with-her-friend_1153-11.jpg" },
|
||||||
testimonial: "Absolutely the best experience I've ever had at a salon. My color is exactly what I wanted.",
|
{ id: "5", name: "Elena D.", handle: "@elena_d", testimonial: "My hair has never looked healthier. Truly skilled professionals.", imageSrc: "http://img.b2bpic.net/free-photo/closeup-happy-young-caucasian-girl-with-wide-smile-looks-camera-blurred-background-brunette-with-long-hair-wears-green-shirt-emotions-people-concept_197531-32280.jpg" },
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/team-bride-celebrating-before-wedding_23-2149329119.jpg",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: "2",
|
|
||||||
name: "Jordan L.",
|
|
||||||
handle: "@jordan_l",
|
|
||||||
testimonial: "I've been coming here for two years and I'll never go anywhere else. They're incredibly talented.",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/smiling-african-american-girl-sitting-cafe_1262-3083.jpg",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: "3",
|
|
||||||
name: "Priya K.",
|
|
||||||
handle: "@priya_k",
|
|
||||||
testimonial: "Walked out feeling like a new person. Worth every penny.",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/side-view-beautiful-woman-with-folded-arms-looking-camera_23-2147876783.jpg",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: "4",
|
|
||||||
name: "Alex R.",
|
|
||||||
handle: "@alex_r",
|
|
||||||
testimonial: "The atmosphere is so relaxing and the stylists really listen to you.",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/smiling-woman-talking-phone-with-her-friend_1153-11.jpg",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: "5",
|
|
||||||
name: "Elena D.",
|
|
||||||
handle: "@elena_d",
|
|
||||||
testimonial: "My hair has never looked healthier. Truly skilled professionals.",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/closeup-happy-young-caucasian-girl-with-wide-smile-looks-camera-blurred-background-brunette-with-long-hair-wears-green-shirt-emotions-people-concept_197531-32280.jpg",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
title="What Our Clients Say"
|
title="What Our Clients Say"
|
||||||
description="Join our community of happy, confident clients."
|
description="Join our community of happy, confident clients."
|
||||||
@@ -223,71 +103,20 @@ export default function LandingPage() {
|
|||||||
<div id="contact" data-section="contact">
|
<div id="contact" data-section="contact">
|
||||||
<ContactCTA
|
<ContactCTA
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
background={{
|
background={{ variant: "plain" }}
|
||||||
variant: "plain",
|
|
||||||
}}
|
|
||||||
tag="Booking"
|
tag="Booking"
|
||||||
title="Ready for Your Transformation?"
|
title="Ready for Your Transformation?"
|
||||||
description="Reserve your chair today. Select your service, choose your stylist, and pick a time that works for you."
|
description="Reserve your chair today. Select your service, choose your stylist, and pick a time that works for you."
|
||||||
buttons={[
|
buttons={[{ text: "Book Now", href: "#" }]}
|
||||||
{
|
|
||||||
text: "Book Now",
|
|
||||||
href: "#",
|
|
||||||
},
|
|
||||||
]}
|
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="footer" data-section="footer">
|
<div id="footer" data-section="footer">
|
||||||
<FooterBase
|
<FooterBase
|
||||||
columns={[
|
columns={[
|
||||||
{
|
{ title: "Services", items: [{ label: "Cut & Style", href: "#services" }, { label: "Color & Highlights", href: "#services" }, { label: "Bridal Packages", href: "#services" }] },
|
||||||
title: "Services",
|
{ title: "About", items: [{ label: "Our Story", href: "/about" }, { label: "Meet the Team", href: "#team" }, { label: "Contact", href: "#contact" }] },
|
||||||
items: [
|
{ title: "Legal", items: [{ label: "Privacy Policy", href: "#" }, { label: "Terms of Service", href: "#" }] },
|
||||||
{
|
|
||||||
label: "Cut & Style",
|
|
||||||
href: "#services",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
label: "Color & Highlights",
|
|
||||||
href: "#services",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
label: "Bridal Packages",
|
|
||||||
href: "#services",
|
|
||||||
},
|
|
||||||
],
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: "About",
|
|
||||||
items: [
|
|
||||||
{
|
|
||||||
label: "Our Story",
|
|
||||||
href: "#about",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
label: "Meet the Team",
|
|
||||||
href: "#team",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
label: "Contact",
|
|
||||||
href: "#contact",
|
|
||||||
},
|
|
||||||
],
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: "Legal",
|
|
||||||
items: [
|
|
||||||
{
|
|
||||||
label: "Privacy Policy",
|
|
||||||
href: "#",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
label: "Terms of Service",
|
|
||||||
href: "#",
|
|
||||||
},
|
|
||||||
],
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
logoText="POSH"
|
logoText="POSH"
|
||||||
copyrightText="© 2025 Posh Hair Studio | All Rights Reserved"
|
copyrightText="© 2025 Posh Hair Studio | All Rights Reserved"
|
||||||
|
|||||||
Reference in New Issue
Block a user