From bda3e0e7b962da3381abb1c20ab8f05c57142ca3 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 6 May 2026 16:43:38 +0000 Subject: [PATCH] Switch to version 2: modified src/app/page.tsx --- src/app/page.tsx | 258 ++++++++++++++++++++++++++++++++++++++++++----- 1 file changed, 230 insertions(+), 28 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 8693f5a..3df42ad 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -12,7 +12,6 @@ import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatin import PricingCardTwo from '@/components/sections/pricing/PricingCardTwo'; import ProductCardTwo from '@/components/sections/product/ProductCardTwo'; import TestimonialCardSixteen from '@/components/sections/testimonial/TestimonialCardSixteen'; -import ContactText from '@/components/sections/contact/ContactText'; export default function LandingPage() { return ( @@ -32,46 +31,94 @@ export default function LandingPage() {
-
- -
-
@@ -82,11 +129,15 @@ export default function LandingPage() { gridVariant="two-columns-alternating-heights" useInvertedBackground={false} features={[ - { title: "Gents Haircuts", description: "Precision styling.", imageSrc: "http://img.b2bpic.net/free-photo/studio-portrait-fashionable-modern-male-grey-t-shirt_613910-532.jpg" }, - { title: "Ladies Styling", description: "Wash, cut, and blow dry.", imageSrc: "http://img.b2bpic.net/free-photo/woman-with-hairdryer-hairbrush_1385-2900.jpg" } + { + title: "Gents Haircuts", description: "Precision styling tailored to your unique look.", imageSrc: "http://img.b2bpic.net/free-photo/studio-portrait-fashionable-modern-male-grey-t-shirt_613910-532.jpg", imageAlt: "Gents Haircut"}, + { + title: "Ladies Styling", description: "Wash, cut, and blow dry services for sophisticated style.", imageSrc: "http://img.b2bpic.net/free-photo/woman-with-hairdryer-hairbrush_1385-2900.jpg", imageAlt: "Ladies Styling"}, + { + title: "Beard & Facial", description: "Expert beard shaping, hot towel shaves, and facial treatments.", imageSrc: "http://img.b2bpic.net/free-photo/woman-helping-man-applying-facial-mask_23-2148784320.jpg", imageAlt: "Facial treatment"}, ]} title="PREMIUM SERVICES" - description="Comprehensive grooming solutions." + description="Comprehensive grooming and hair solutions for gentlemen and ladies." /> @@ -96,10 +147,130 @@ export default function LandingPage() { textboxLayout="default" useInvertedBackground={false} plans={[ - { id: "p1", badge: "Most Popular", price: "£35", subtitle: "Premium Haircut", buttons: [{ text: "Book", href: "#booking" }], features: ["Consultation", "Precision Cut"] } + { + id: "p1", badge: "Most Popular", price: "£35", subtitle: "Premium Haircut & Styling", buttons: [ + { + text: "Book Now", href: "#contact"}, + ], + features: [ + "Consultation", "Precision Cut", "Style Advice", "Finish"], + }, + { + id: "p2", badge: "Essential", price: "£55", subtitle: "Cut, Wash & Blow Dry", buttons: [ + { + text: "Book Now", href: "#contact"}, + ], + features: [ + "Head Massage", "Professional Cut", "Styling"], + }, + { + id: "p3", badge: "Luxury", price: "£85", subtitle: "Balayage & Treatment", buttons: [ + { + text: "Book Now", href: "#contact"}, + ], + features: [ + "Consultation", "Expert Colour", "Treatment", "Finish"], + }, ]} title="PRICE LIST" - description="Transparent pricing." + description="Transparent pricing for world-class grooming." + /> + + + + +
+ +
+ +
+ +
+ +
+
@@ -107,7 +278,38 @@ export default function LandingPage() {