From 0b7df9ee2f2876812757014d8e18446edb6a9d78 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 13 Apr 2026 05:04:18 +0000 Subject: [PATCH 1/2] Update src/app/page.tsx --- src/app/page.tsx | 170 +++++++++++------------------------------------ 1 file changed, 39 insertions(+), 131 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 566e667..6d0e5e5 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -2,9 +2,9 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import ReactLenis from "lenis/react"; -import ContactSplit from '@/components/sections/contact/ContactSplit'; +import ContactSplitForm from '@/components/sections/contact/ContactSplitForm'; import FaqSplitText from '@/components/sections/faq/FaqSplitText'; -import FooterMedia from '@/components/sections/footer/FooterMedia'; +import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal'; import HeroBillboardCarousel from '@/components/sections/hero/HeroBillboardCarousel'; import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered'; import TeamCardSix from '@/components/sections/team/TeamCardSix'; @@ -18,71 +18,33 @@ export default function LandingPage() { borderRadius="soft" contentWidth="medium" sizing="largeSmallSizeMediumTitles" - background="floatingGradient" - cardStyle="gradient-radial" - primaryButtonStyle="primary-glow" + background="noise" + cardStyle="solid" + primaryButtonStyle="flat" secondaryButtonStyle="solid" - headingFontWeight="normal" + headingFontWeight="bold" >
@@ -90,15 +52,10 @@ export default function LandingPage() {
@@ -110,22 +67,12 @@ export default function LandingPage() { textboxLayout="default" gridVariant="uniform-all-items-equal" useInvertedBackground={false} - title="Meet Our Expert Barbers" - description="Our team brings years of experience and a passion for modern grooming to every chair." - tag="Our Experts" + title="Our Grooming Experts" + description="Masters of the fade, beard sculptors, and style perfectionists." + tag="Meet the Crew" members={[ - { - id: "barber-1", - name: "Alex", - role: "Master Barber", - imageSrc: "http://img.b2bpic.net/free-photo/full-shot-barber-hair-salon_23-2148242782.jpg", - }, - { - id: "barber-2", - name: "Marcus", - role: "Senior Stylist", - imageSrc: "http://img.b2bpic.net/free-photo/close-up-details-hairdresser-salon_23-2149205856.jpg", - }, + { id: "a", name: "Alex", role: "Head Barber", imageSrc: "http://img.b2bpic.net/free-photo/full-shot-barber-hair-salon_23-2148242782.jpg" }, + { id: "b", name: "Marcus", role: "Lead Stylist", imageSrc: "http://img.b2bpic.net/free-photo/close-up-details-hairdresser-salon_23-2149205856.jpg" }, ]} />
@@ -133,77 +80,38 @@ export default function LandingPage() {
-
); -} +} \ No newline at end of file -- 2.49.1 From 9143b9dc1e6283370e190332cda399c0eae77cfa Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 13 Apr 2026 05:04:19 +0000 Subject: [PATCH 2/2] Update src/app/styles/variables.css --- src/app/styles/variables.css | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/app/styles/variables.css b/src/app/styles/variables.css index 539ce00..c0eeac9 100644 --- a/src/app/styles/variables.css +++ b/src/app/styles/variables.css @@ -10,15 +10,15 @@ --accent: #ffffff; --background-accent: #ffffff; */ - --background: #f5f5f5; - --card: #ffffff; - --foreground: #1c1c1c; - --primary-cta: #1c1c1c; + --background: #0a0a0a; + --card: #1a1a1a; + --foreground: #ffffff; + --primary-cta: #ffffff; --primary-cta-text: #f5f5f5; - --secondary-cta: #ffffff; + --secondary-cta: #1a1a1a; --secondary-cta-text: #1c1c1c; - --accent: #15479c; - --background-accent: #a8cce8; + --accent: #333333; + --background-accent: #222222; /* text sizing - set by ThemeProvider */ /* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem); -- 2.49.1