From cc1ffb46aee912494cf8b1f0a1ec46305d8def85 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 30 Mar 2026 11:36:38 +0000 Subject: [PATCH 1/2] Update src/app/page.tsx --- src/app/page.tsx | 211 ++++++++++++----------------------------------- 1 file changed, 53 insertions(+), 158 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 960ee9b..9528164 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -9,7 +9,9 @@ import HeroBillboardScroll from '@/components/sections/hero/HeroBillboardScroll' import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered'; import SplitAbout from '@/components/sections/about/SplitAbout'; import TestimonialCardTen from '@/components/sections/testimonial/TestimonialCardTen'; -import { Award, Clock, Phone, Scissors, Sparkles } from "lucide-react"; +import TimelineHorizontalCardStack from '@/components/cardStack/layouts/timelines/TimelineHorizontalCardStack'; +import EmailSignupForm from '@/components/form/EmailSignupForm'; +import { Award, Clock, Phone, Scissors, Sparkles, AlertTriangle, ShieldCheck } from "lucide-react"; export default function LandingPage() { return ( @@ -29,26 +31,12 @@ export default function LandingPage() { -
+
+ /> +
+ +
+ +
1. Consultation: We listen to your hair vision.
+
2. Preparation: Sanitized tools for a clean slate.
+
3. Execution: Precision cutting by our specialists.
+
4. Finishing: Signature touches and styling.
+
@@ -140,46 +104,9 @@ export default function LandingPage() { textboxLayout="default" useInvertedBackground={false} testimonials={[ - { - id: "1", - title: "Perfect Every Time", - quote: "They never rush a cut. Always takes time to get it perfect.", - name: "Graham", - role: "Loyal Client", - imageSrc: "http://img.b2bpic.net/free-photo/young-woman-showing-double-thumbs-up-white-shirt-looking-cheerful_176474-17343.jpg", - }, - { - id: "2", - title: "Great Experience", - quote: "The head massage is a absolute game-changer.", - name: "Fahad", - role: "Loyal Client", - imageSrc: "http://img.b2bpic.net/free-photo/smiley-woman-posing-her-home_23-2148708980.jpg", - }, - { - id: "3", - title: "Kid Friendly", - quote: "My son loves coming here, and he always leaves with a lollipop!", - name: "Weronika", - role: "Parent", - imageSrc: "http://img.b2bpic.net/free-photo/authentic-book-club-scene_23-2150104578.jpg", - }, - { - id: "4", - title: "16 Years Strong", - quote: "I've been trusting Shehzad for years. There's no better shop in town.", - name: "Khalid", - role: "Loyal Client", - imageSrc: "http://img.b2bpic.net/free-photo/people-technology-close-up-shot-happy-face-attractive-bearded-man-sitting-front-laptop-screen-smiling-joyfully-while-messaging-friends-online-via-social-networks_273609-6655.jpg?_wi=1", - }, - { - id: "5", - title: "Professionalism", - quote: "A true professional. Best fade I have had in the city.", - name: "Marcus", - role: "Regular", - imageSrc: "http://img.b2bpic.net/free-photo/people-technology-close-up-shot-happy-face-attractive-bearded-man-sitting-front-laptop-screen-smiling-joyfully-while-messaging-friends-online-via-social-networks_273609-6655.jpg?_wi=2", - }, + { id: "1", title: "Perfect Every Time", quote: "They never rush a cut. Always takes time to get it perfect.", name: "Graham", role: "Loyal Client" }, + { id: "2", title: "Great Experience", quote: "The head massage is a absolute game-changer.", name: "Fahad", role: "Loyal Client" }, + { id: "3", title: "16 Years Strong", quote: "There's no better shop in town.", name: "Khalid", role: "Loyal Client" }, ]} title="Voices of Trust" description="Hear what our loyal community says about our dedication to quality." @@ -187,32 +114,24 @@ export default function LandingPage() {
+
+

Schedule Your Appointment

+ +
@@ -220,34 +139,10 @@ export default function LandingPage() { -- 2.49.1 From ece15a59138d3a6089c0295aeee7425e880c2e37 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 30 Mar 2026 11:36:38 +0000 Subject: [PATCH 2/2] Update src/app/styles/variables.css --- src/app/styles/variables.css | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/app/styles/variables.css b/src/app/styles/variables.css index 3b1087b..353d7ae 100644 --- a/src/app/styles/variables.css +++ b/src/app/styles/variables.css @@ -10,15 +10,15 @@ --accent: #ffffff; --background-accent: #ffffff; */ - --background: #0a0a0a; - --card: #1a1a1a; + --background: #001f3f; + --card: #002b5c; --foreground: #f5f5f5; - --primary-cta: #d4af37; + --primary-cta: #d35400; --primary-cta-text: #0a0a0a; - --secondary-cta: #ffffff; + --secondary-cta: #f39c12; --secondary-cta-text: #1a1a1a; - --accent: #b8860b; - --background-accent: #1a1a1a; + --accent: #d35400; + --background-accent: #001a35; /* text sizing - set by ThemeProvider */ /* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem); -- 2.49.1