Update src/app/services/page.tsx
This commit is contained in:
@@ -26,31 +26,19 @@ export default function LandingPage() {
|
||||
<NavbarLayoutFloatingOverlay
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "/",
|
||||
},
|
||||
name: "Home", id: "/"},
|
||||
{
|
||||
name: "Services",
|
||||
id: "/services",
|
||||
},
|
||||
name: "Services", id: "/services"},
|
||||
{
|
||||
name: "Gallery",
|
||||
id: "/gallery",
|
||||
},
|
||||
name: "Gallery", id: "/gallery"},
|
||||
{
|
||||
name: "About",
|
||||
id: "/about",
|
||||
},
|
||||
name: "About", id: "/about"},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "/contact",
|
||||
},
|
||||
name: "Contact", id: "/contact"},
|
||||
]}
|
||||
brandName="Salon Le Barbu"
|
||||
button={{
|
||||
text: "Book Appointment",
|
||||
href: "#booking",
|
||||
}}
|
||||
text: "Book Appointment", href: "#booking"}}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -61,41 +49,20 @@ export default function LandingPage() {
|
||||
useInvertedBackground={false}
|
||||
plans={[
|
||||
{
|
||||
id: "cut",
|
||||
badge: "Popular",
|
||||
price: "$45",
|
||||
subtitle: "Luxury Haircut",
|
||||
features: [
|
||||
"Consultation",
|
||||
"Precision Cut",
|
||||
"Hot Towel Finish",
|
||||
],
|
||||
id: "cut", badge: "Popular", price: "", subtitle: "Coupes de cheveux", features: [
|
||||
"Que vous préfériez un style classique, moderne ou audacieux, nos coiffeurs experts sauront créer la coupe qui vous correspond parfaitement. Grâce à une maîtrise des dernières tendances et des techniques traditionnelles, nous vous garantissons un résultat soigné et personnalisé, adapté à votre morphologie et à votre style de vie."],
|
||||
},
|
||||
{
|
||||
id: "trim",
|
||||
badge: "Essential",
|
||||
price: "$30",
|
||||
subtitle: "Beard Grooming",
|
||||
features: [
|
||||
"Beard Shaping",
|
||||
"Oil Treatment",
|
||||
"Line-up",
|
||||
],
|
||||
id: "trim", badge: "Essential", price: "", subtitle: "Tresses et dreadlocks", features: [
|
||||
"Au salon Le Barbu, nous sommes spécialisés dans les tresses, l’interlock et le retwist ! Nos coiffeuses expertes sont là pour vous offrir des services de qualité, que ce soit pour des tresses stylées, un entretien minutieux de vos dreadlocks ou un retwist impeccable. Venez nous rendre visite pour une expérience coiffure unique et personnalisée. Votre style, notre passion!"],
|
||||
},
|
||||
{
|
||||
id: "combo",
|
||||
badge: "Best Value",
|
||||
price: "$70",
|
||||
subtitle: "The Full Barbu",
|
||||
features: [
|
||||
"Haircut & Beard Trim",
|
||||
"Full Grooming Session",
|
||||
"Style Consultation",
|
||||
],
|
||||
id: "combo", badge: "Premium", price: "", subtitle: "Taille de la barbe", features: [
|
||||
"Sculptez votre barbe selon vos envies avec l’expertise de nos professionnels. Que ce soit pour un style structuré ou un look naturel, nous vous offrons un taillage précis et adapté à la forme de votre visage, en prenant soin de la santé et de l’entretien de votre barbe pour un résultat impeccable."],
|
||||
},
|
||||
]}
|
||||
title="Our Services"
|
||||
description="Premium cuts and grooming services."
|
||||
description="Premium grooming services designed for you."
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -107,15 +74,9 @@ export default function LandingPage() {
|
||||
description="More than just a cut."
|
||||
features={[
|
||||
{
|
||||
title: "Consultation",
|
||||
description: "We analyze your hair type and style goals.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/man-barbershop_23-2147778765.jpg",
|
||||
},
|
||||
title: "Consultation", description: "We analyze your hair type and style goals.", imageSrc: "http://img.b2bpic.net/free-photo/man-barbershop_23-2147778765.jpg"},
|
||||
{
|
||||
title: "Precision Styling",
|
||||
description: "Detailed work for a clean, modern finish.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/man-sitting-chair-hairdresser-with-client-guy-drinkig-whiskey_1157-43585.jpg",
|
||||
},
|
||||
title: "Precision Styling", description: "Detailed work for a clean, modern finish.", imageSrc: "http://img.b2bpic.net/free-photo/man-sitting-chair-hairdresser-with-client-guy-drinkig-whiskey_1157-43585.jpg"},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -124,29 +85,19 @@ export default function LandingPage() {
|
||||
<FooterSimple
|
||||
columns={[
|
||||
{
|
||||
title: "Contact",
|
||||
items: [
|
||||
title: "Contact", items: [
|
||||
{
|
||||
label: "812 Bd Décarie, Montreal",
|
||||
href: "https://maps.google.com",
|
||||
},
|
||||
label: "812 Bd Décarie, Montreal", href: "https://maps.google.com"},
|
||||
{
|
||||
label: "(514) 504-4000",
|
||||
href: "tel:5145044000",
|
||||
},
|
||||
label: "(514) 504-4000", href: "tel:5145044000"},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Info",
|
||||
items: [
|
||||
title: "Info", items: [
|
||||
{
|
||||
label: "Book Now",
|
||||
href: "/contact",
|
||||
},
|
||||
label: "Book Now", href: "/contact"},
|
||||
{
|
||||
label: "About Us",
|
||||
href: "/about",
|
||||
},
|
||||
label: "About Us", href: "/about"},
|
||||
],
|
||||
},
|
||||
]}
|
||||
@@ -157,4 +108,4 @@ export default function LandingPage() {
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user