From 4395e5011c9d8b23463fa38866bf6f21100cc17b Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 28 Apr 2026 16:03:43 +0000 Subject: [PATCH 1/2] Update src/app/page.tsx --- src/app/page.tsx | 223 ++++++++++------------------------------------- 1 file changed, 48 insertions(+), 175 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 3da3a1d..c9f78f4 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -4,10 +4,11 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import ReactLenis from "lenis/react"; import FaqDouble from '@/components/sections/faq/FaqDouble'; import FeatureHoverPattern from '@/components/sections/feature/featureHoverPattern/FeatureHoverPattern'; -import FooterCard from '@/components/sections/footer/FooterCard'; +import FooterBase from '@/components/sections/footer/FooterBase'; import HeroCentered from '@/components/sections/hero/HeroCentered'; import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; -import TestimonialCardOne from '@/components/sections/testimonial/TestimonialCardOne'; +import TestimonialCardTwo from '@/components/sections/testimonial/TestimonialCardTwo'; +import ContactSplit from '@/components/sections/contact/ContactSplit'; import { Palette, Scissors, Sparkles, Sun } from "lucide-react"; export default function LandingPage() { @@ -19,7 +20,7 @@ export default function LandingPage() { contentWidth="small" sizing="mediumLargeSizeMediumTitles" background="grid" - cardStyle="solid" + cardStyle="glass-depth" primaryButtonStyle="flat" secondaryButtonStyle="solid" headingFontWeight="semibold" @@ -28,96 +29,28 @@ export default function LandingPage() {
@@ -127,82 +60,38 @@ export default function LandingPage() { textboxLayout="split" useInvertedBackground={false} features={[ - { - icon: Scissors, - title: "Hair colour & highlights", - description: "Balayage, full colour, ombre and everything in between. From R450.", - }, - { - icon: Sparkles, - title: "Cut & blowdry", - description: "A classic done really well. From R220.", - }, - { - icon: Palette, - title: "Gel nails & nail art", - description: "Gel, acrylic or natural nails. Custom art. From R180.", - }, - { - icon: Sun, - title: "Facials & skin care", - description: "Relaxing, results-driven facials tailored to you. From R280.", - }, + { icon: Scissors, title: "Hair colour & highlights", description: "Balayage, full colour, ombre and everything in between." }, + { icon: Sparkles, title: "Cut & blowdry", description: "A classic done really well." }, + { icon: Palette, title: "Gel nails & nail art", description: "Gel, acrylic or natural nails." }, + { icon: Sun, title: "Facials & skin care", description: "Relaxing, results-driven facials." }, ]} title="Premium Beauty Services" - description="Explore our top-tier treatments, from precision haircuts to revitalizing skin care." + description="Explore our top-tier treatments." />
- +
+ +
+
@@ -210,41 +99,25 @@ export default function LandingPage() { ); -} +} \ No newline at end of file -- 2.49.1 From fedaaad90b4ba877ee4c34452c5c798e3ac12870 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 28 Apr 2026 16:03:43 +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 bd16fe2..f0613f8 100644 --- a/src/app/styles/variables.css +++ b/src/app/styles/variables.css @@ -10,15 +10,15 @@ --accent: #ffffff; --background-accent: #ffffff; */ - --background: #FBEAF0; - --card: #ffffff; - --foreground: #2b180a; - --primary-cta: #D4537E; + --background: #0a0a0a; + --card: #1a1a1a; + --foreground: #ffffff; + --primary-cta: #106EFB; --primary-cta-text: #ffffff; - --secondary-cta: #993556; + --secondary-cta: #141414; --secondary-cta-text: #ffffff; - --accent: #ED93B1; - --background-accent: #f9f1f4; + --accent: #FFD700; + --background-accent: #C0C0C0; /* text sizing - set by ThemeProvider */ /* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem); -- 2.49.1