From cef0e1983e213cc4c1a99fe6f270cb77db392e44 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 7 Apr 2026 12:35:01 +0000 Subject: [PATCH 1/2] Update src/app/page.tsx --- src/app/page.tsx | 111 ++++++++++++++++++----------------------------- 1 file changed, 42 insertions(+), 69 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 95cc672..ab18e1e 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -9,7 +9,7 @@ import HeroSplitDoubleCarousel from '@/components/sections/hero/HeroSplitDoubleC import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; import SplitAbout from '@/components/sections/about/SplitAbout'; import TestimonialCardFive from '@/components/sections/testimonial/TestimonialCardFive'; -import { Check } from "lucide-react"; +import { Check, Clock, MapPin, Phone } from "lucide-react"; export default function LandingPage() { return ( @@ -19,49 +19,56 @@ export default function LandingPage() { borderRadius="pill" contentWidth="medium" sizing="medium" - background="blurBottom" - cardStyle="subtle-shadow" + background="circleGradient" + cardStyle="glass-depth" primaryButtonStyle="gradient" secondaryButtonStyle="glass" - headingFontWeight="normal" + headingFontWeight="medium" >
+
+ +
+
@@ -71,65 +78,31 @@ export default function LandingPage() { textboxLayout="default" useInvertedBackground={false} features={[ - { title: "Custom Furniture", description: "Handcrafted furniture designed with precision.", media: { imageSrc: "http://img.b2bpic.net/free-photo/wood-crafting-objects-assortment_23-2148732464.jpg?_wi=3", imageAlt: "Furniture" }, items: [{ icon: Check, text: "Ergonomic designs" }, { icon: Check, text: "Premium timber selection" }], reverse: false }, - { title: "Built-in Cupboards", description: "Modern storage solutions maximizing space.", media: { imageSrc: "http://img.b2bpic.net/free-photo/light-diagonal-handleless-drawer-blue-modern_169016-69049.jpg?_wi=2", imageAlt: "Cupboards" }, items: [{ icon: Check, text: "Floor-to-ceiling storage" }, { icon: Check, text: "Soft-close mechanisms" }], reverse: true }, - { title: "Decking & Outdoor", description: "Weather-resistant decks for outdoor living.", media: { imageSrc: "http://img.b2bpic.net/free-photo/photo-wood-texture-pattern_58702-13259.jpg?_wi=2", imageAlt: "Decking" }, items: [{ icon: Check, text: "UV protected finish" }, { icon: Check, text: "Hardwood durability" }], reverse: false }, - ]} - title="Our Services" - description="Premium wood solutions for every need." - /> - - -
- -
- -
-
-- 2.49.1 From 1d140865daefdc2c57c9754a5264a317e11ea215 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 7 Apr 2026 12:35:02 +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 ac4971d..6b8ba4d 100644 --- a/src/app/styles/variables.css +++ b/src/app/styles/variables.css @@ -10,15 +10,15 @@ --accent: #ffffff; --background-accent: #ffffff; */ - --background: #0b0b0b; - --card: #1a1a1a; - --foreground: #ffffff; - --primary-cta: #d4af37; + --background: #fdf6f6; + --card: #fffaf0; + --foreground: #4a3b3b; + --primary-cta: #ffb7c5; --primary-cta-text: #000000; - --secondary-cta: #1a1a1a; + --secondary-cta: #fffaf0; --secondary-cta-text: #ffffff; - --accent: #222222; - --background-accent: #222222; + --accent: #ff9aa2; + --background-accent: #fce4e4; /* text sizing - set by ThemeProvider */ /* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem); -- 2.49.1