Update src/app/page.tsx
This commit is contained in:
204
src/app/page.tsx
204
src/app/page.tsx
@@ -30,31 +30,19 @@ export default function LandingPage() {
|
|||||||
<NavbarLayoutFloatingInline
|
<NavbarLayoutFloatingInline
|
||||||
navItems={[
|
navItems={[
|
||||||
{
|
{
|
||||||
name: "About",
|
name: "About", id: "#about"},
|
||||||
id: "#about",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
name: "Services",
|
name: "Services", id: "#services"},
|
||||||
id: "#services",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
name: "Team",
|
name: "Team", id: "#team"},
|
||||||
id: "#team",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
name: "Reviews",
|
name: "Reviews", id: "#reviews"},
|
||||||
id: "#reviews",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
name: "Contact",
|
name: "Contact", id: "#contact"},
|
||||||
id: "#contact",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
brandName="Vicky's Hair Salon"
|
brandName="Vicky's Hair Salon"
|
||||||
button={{
|
button={{
|
||||||
text: "Book Now",
|
text: "Book Now", href: "#contact"}}
|
||||||
href: "#contact",
|
|
||||||
}}
|
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -64,35 +52,21 @@ export default function LandingPage() {
|
|||||||
description="Where Every Visit Feels Luxurious"
|
description="Where Every Visit Feels Luxurious"
|
||||||
buttons={[
|
buttons={[
|
||||||
{
|
{
|
||||||
text: "Book Your Luxury Session",
|
text: "Book Your Luxury Session", href: "#contact"},
|
||||||
href: "#contact",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
slides={[
|
slides={[
|
||||||
{
|
{
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/sexy-posh-woman-black-dress-looking-mirror_132075-8964.jpg?_wi=1",
|
imageSrc: "http://img.b2bpic.net/free-photo/sexy-posh-woman-black-dress-looking-mirror_132075-8964.jpg", imageAlt: "Salon Luxury 1"},
|
||||||
imageAlt: "Salon Luxury 1",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/professional-barber-shop-chairs-close-up_23-2148353478.jpg",
|
imageSrc: "http://img.b2bpic.net/free-photo/professional-barber-shop-chairs-close-up_23-2148353478.jpg", imageAlt: "Salon Luxury 2"},
|
||||||
imageAlt: "Salon Luxury 2",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/customer-standing-front-mirror-barbershop_23-2148181953.jpg",
|
imageSrc: "http://img.b2bpic.net/free-photo/customer-standing-front-mirror-barbershop_23-2148181953.jpg", imageAlt: "Salon Luxury 3"},
|
||||||
imageAlt: "Salon Luxury 3",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/hairdresser-consulting-client-salon_23-2147769879.jpg",
|
imageSrc: "http://img.b2bpic.net/free-photo/hairdresser-consulting-client-salon_23-2147769879.jpg", imageAlt: "Salon Luxury 4"},
|
||||||
imageAlt: "Salon Luxury 4",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-women-s-haircut_1150-5885.jpg",
|
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-women-s-haircut_1150-5885.jpg", imageAlt: "Salon Luxury 5"},
|
||||||
imageAlt: "Salon Luxury 5",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-woman-standing-bathroom_1157-20468.jpg",
|
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-woman-standing-bathroom_1157-20468.jpg", imageAlt: "Salon Luxury 6"},
|
||||||
imageAlt: "Salon Luxury 6",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
@@ -102,24 +76,15 @@ export default function LandingPage() {
|
|||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
heading={[
|
heading={[
|
||||||
{
|
{
|
||||||
type: "text",
|
type: "text", content: "Welcome to "},
|
||||||
content: "Welcome to ",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
type: "image",
|
type: "image", src: "http://img.b2bpic.net/free-photo/portrait-young-woman-black-sweater-standing-posing_114579-81883.jpg", alt: "Vicky Logo"},
|
||||||
src: "http://img.b2bpic.net/free-photo/portrait-young-woman-black-sweater-standing-posing_114579-81883.jpg",
|
|
||||||
alt: "Vicky Logo",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
type: "text",
|
type: "text", content: " Hair Salon"},
|
||||||
content: " Hair Salon",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
buttons={[
|
buttons={[
|
||||||
{
|
{
|
||||||
text: "Learn More",
|
text: "Learn More", href: "#team"},
|
||||||
href: "#team",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
@@ -131,41 +96,17 @@ export default function LandingPage() {
|
|||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
features={[
|
features={[
|
||||||
{
|
{
|
||||||
title: "Haircuts",
|
title: "Haircuts", description: "Precision styling tailored to your face shape and personal style.", imageSrc: "http://img.b2bpic.net/free-photo/woman-with-dryer-mirror-catching-hair-movement-reflected-routine_169016-69469.jpg", imageAlt: "Haircuts"},
|
||||||
description: "Precision styling tailored to your face shape and personal style.",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-with-dryer-mirror-catching-hair-movement-reflected-routine_169016-69469.jpg",
|
|
||||||
imageAlt: "Haircuts",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
title: "Color",
|
title: "Color", description: "Custom color blends for stunning, vibrant dimensions.", imageSrc: "http://img.b2bpic.net/free-photo/side-view-woman-hair-salon_23-2150668447.jpg", imageAlt: "Color"},
|
||||||
description: "Custom color blends for stunning, vibrant dimensions.",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/side-view-woman-hair-salon_23-2150668447.jpg",
|
|
||||||
imageAlt: "Color",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
title: "Blowout",
|
title: "Blowout", description: "Smooth, voluminous finishes that last.", imageSrc: "http://img.b2bpic.net/free-photo/stylish-man-sitting-barbershop_1157-24982.jpg", imageAlt: "Blowout"},
|
||||||
description: "Smooth, voluminous finishes that last.",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/stylish-man-sitting-barbershop_1157-24982.jpg",
|
|
||||||
imageAlt: "Blowout",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
title: "Deep Conditioning",
|
title: "Deep Conditioning", description: "Intensive hydration treatments for hair restoration.", imageSrc: "http://img.b2bpic.net/free-photo/woman-using-spray-customer-barbershop_23-2147737081.jpg", imageAlt: "Deep Conditioning"},
|
||||||
description: "Intensive hydration treatments for hair restoration.",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-using-spray-customer-barbershop_23-2147737081.jpg",
|
|
||||||
imageAlt: "Deep Conditioning",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
title: "Extensions",
|
title: "Extensions", description: "Full volume and length with premium quality extensions.", imageSrc: "http://img.b2bpic.net/free-photo/one-woman-helps-friend-with-necklace_343596-885.jpg", imageAlt: "Extensions"},
|
||||||
description: "Full volume and length with premium quality extensions.",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/one-woman-helps-friend-with-necklace_343596-885.jpg",
|
|
||||||
imageAlt: "Extensions",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
title: "Lashes/Wax",
|
title: "Lashes/Wax", description: "Professional beauty services to complement your look.", imageSrc: "http://img.b2bpic.net/free-photo/beautiful-hair-process-keratin-treatment_23-2149332456.jpg", imageAlt: "Lashes/Wax"},
|
||||||
description: "Professional beauty services to complement your look.",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-hair-process-keratin-treatment_23-2149332456.jpg",
|
|
||||||
imageAlt: "Lashes/Wax",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
title="Our Signature Services"
|
title="Our Signature Services"
|
||||||
description="Experience unparalleled hair care curated for the modern client."
|
description="Experience unparalleled hair care curated for the modern client."
|
||||||
@@ -179,33 +120,14 @@ export default function LandingPage() {
|
|||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
groups={[
|
groups={[
|
||||||
{
|
{
|
||||||
id: "stylists",
|
id: "stylists", groupTitle: "Elite Stylists", members: [
|
||||||
groupTitle: "Elite Stylists",
|
|
||||||
members: [
|
|
||||||
{
|
{
|
||||||
id: "vicky",
|
id: "vicky", title: "Vicky", subtitle: "Founder & Creative Director", detail: "The visionary behind our luxury salon experience.", imageSrc: "http://img.b2bpic.net/free-photo/top-view-smiling-young-hairdesser-wearing-gray-apron-holding-comb-cutting-hair-with-scissor-pastel-blue-color-background_140725-155271.jpg"},
|
||||||
title: "Vicky",
|
|
||||||
subtitle: "Founder & Creative Director",
|
|
||||||
detail: "The visionary behind our luxury salon experience.",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-smiling-young-hairdesser-wearing-gray-apron-holding-comb-cutting-hair-with-scissor-pastel-blue-color-background_140725-155271.jpg",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "nicky",
|
id: "nicky", title: "Nicky", subtitle: "Senior Stylist", detail: "Specializing in precision cuts and modern color.", imageSrc: "http://img.b2bpic.net/free-photo/portrait-young-female-dentist-dentistry-concept-dental-treatment_169016-67177.jpg"},
|
||||||
title: "Nicky",
|
|
||||||
subtitle: "Senior Stylist",
|
|
||||||
detail: "Specializing in precision cuts and modern color.",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-young-female-dentist-dentistry-concept-dental-treatment_169016-67177.jpg",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "crystal",
|
id: "crystal", title: "Crystal", subtitle: "Colorist & Extension Expert", detail: "Transforming looks with artful color and length.", imageSrc: "http://img.b2bpic.net/free-photo/young-beautiful-woman-hairdresser-apron-holding-hair-comb-spray-bottle-looking-front-with-serious-face-standing-green-wall_141793-71788.jpg"},
|
||||||
title: "Crystal",
|
|
||||||
subtitle: "Colorist & Extension Expert",
|
|
||||||
detail: "Transforming looks with artful color and length.",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/young-beautiful-woman-hairdresser-apron-holding-hair-comb-spray-bottle-looking-front-with-serious-face-standing-green-wall_141793-71788.jpg",
|
|
||||||
},
|
|
||||||
],
|
],
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/sexy-posh-woman-black-dress-looking-mirror_132075-8964.jpg?_wi=2",
|
|
||||||
imageAlt: "portrait professional hairstylist",
|
|
||||||
},
|
},
|
||||||
]}
|
]}
|
||||||
title="Meet Our Elite Team"
|
title="Meet Our Elite Team"
|
||||||
@@ -220,40 +142,15 @@ export default function LandingPage() {
|
|||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
testimonials={[
|
testimonials={[
|
||||||
{
|
{
|
||||||
id: "1",
|
id: "1", name: "Anna S.", role: "Client", testimonial: "Vicky's is simply the best in Austin. My hair has never looked healthier.", imageSrc: "http://img.b2bpic.net/free-photo/studio-portrait-attractive-brunette-female-with-crossed-arms-white-underwear-with-green-costly-necklace_613910-8010.jpg"},
|
||||||
name: "Anna S.",
|
|
||||||
role: "Client",
|
|
||||||
testimonial: "Vicky's is simply the best in Austin. My hair has never looked healthier.",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/studio-portrait-attractive-brunette-female-with-crossed-arms-white-underwear-with-green-costly-necklace_613910-8010.jpg",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "2",
|
id: "2", name: "Sarah M.", role: "Client", testimonial: "The attention to detail and luxury atmosphere is unmatched.", imageSrc: "http://img.b2bpic.net/free-photo/woman-getting-treatment-hairdresser-shop_23-2149229813.jpg"},
|
||||||
name: "Sarah M.",
|
|
||||||
role: "Client",
|
|
||||||
testimonial: "The attention to detail and luxury atmosphere is unmatched.",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-getting-treatment-hairdresser-shop_23-2149229813.jpg",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "3",
|
id: "3", name: "Jessica R.", role: "Client", testimonial: "Finally found a place that knows extensions perfectly. Five stars!", imageSrc: "http://img.b2bpic.net/free-photo/woman-with-bun-wearing-gray-sweater_155996-26.jpg"},
|
||||||
name: "Jessica R.",
|
|
||||||
role: "Client",
|
|
||||||
testimonial: "Finally found a place that knows extensions perfectly. Five stars!",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-with-bun-wearing-gray-sweater_155996-26.jpg",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "4",
|
id: "4", name: "Maria K.", role: "Client", testimonial: "Exceptional service from Nicky, love the atmosphere.", imageSrc: "http://img.b2bpic.net/free-photo/young-girl-black-shirt-hanged-toy-camera-from-her-neck_114579-24475.jpg"},
|
||||||
name: "Maria K.",
|
|
||||||
role: "Client",
|
|
||||||
testimonial: "Exceptional service from Nicky, love the atmosphere.",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/young-girl-black-shirt-hanged-toy-camera-from-her-neck_114579-24475.jpg",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "5",
|
id: "5", name: "Chloe B.", role: "Client", testimonial: "Vicky's team makes me feel like royalty every time I visit.", imageSrc: "http://img.b2bpic.net/free-photo/team-bride-celebrating-before-wedding_23-2149329119.jpg"},
|
||||||
name: "Chloe B.",
|
|
||||||
role: "Client",
|
|
||||||
testimonial: "Vicky's team makes me feel like royalty every time I visit.",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/team-bride-celebrating-before-wedding_23-2149329119.jpg",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
title="Luxury Reviews"
|
title="Luxury Reviews"
|
||||||
description="Don't just take our word for it."
|
description="Don't just take our word for it."
|
||||||
@@ -264,14 +161,11 @@ export default function LandingPage() {
|
|||||||
<ContactText
|
<ContactText
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
background={{
|
background={{
|
||||||
variant: "sparkles-gradient",
|
variant: "sparkles-gradient"}}
|
||||||
}}
|
|
||||||
text="Visit us at 11200 Manchaca Rd Bldg 4 Unit 3, Austin TX 78748. Call (512) 796-0671 for bookings. Hours: Mon-Fri 10AM-7PM, Sat 10AM-6PM, Sun Closed."
|
text="Visit us at 11200 Manchaca Rd Bldg 4 Unit 3, Austin TX 78748. Call (512) 796-0671 for bookings. Hours: Mon-Fri 10AM-7PM, Sat 10AM-6PM, Sun Closed."
|
||||||
buttons={[
|
buttons={[
|
||||||
{
|
{
|
||||||
text: "Book Now",
|
text: "Book Now", href: "tel:5127960671"},
|
||||||
href: "tel:5127960671",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
@@ -280,37 +174,23 @@ export default function LandingPage() {
|
|||||||
<FooterSimple
|
<FooterSimple
|
||||||
columns={[
|
columns={[
|
||||||
{
|
{
|
||||||
title: "Quick Links",
|
title: "Quick Links", items: [
|
||||||
items: [
|
|
||||||
{
|
{
|
||||||
label: "About",
|
label: "About", href: "#about"},
|
||||||
href: "#about",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
label: "Services",
|
label: "Services", href: "#services"},
|
||||||
href: "#services",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
label: "Team",
|
label: "Team", href: "#team"},
|
||||||
href: "#team",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
label: "Instagram",
|
label: "Instagram", href: "https://instagram.com/vickyshairsalon18"},
|
||||||
href: "https://instagram.com/vickyshairsalon18",
|
|
||||||
},
|
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Contact",
|
title: "Contact", items: [
|
||||||
items: [
|
|
||||||
{
|
{
|
||||||
label: "(512) 796-0671",
|
label: "(512) 796-0671", href: "tel:5127960671"},
|
||||||
href: "tel:5127960671",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
label: "Austin, TX",
|
label: "Austin, TX", href: "#contact"},
|
||||||
href: "#contact",
|
|
||||||
},
|
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
]}
|
]}
|
||||||
|
|||||||
Reference in New Issue
Block a user