From 2ba1f87a68c547960bfcb6b23f46e90c35179714 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 28 Apr 2026 21:56:07 +0000 Subject: [PATCH 1/2] Update src/app/page.tsx --- src/app/page.tsx | 315 +++++++---------------------------------------- 1 file changed, 43 insertions(+), 272 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 5ef6142..798ba65 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -2,10 +2,10 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import ReactLenis from "lenis/react"; -import ContactText from '@/components/sections/contact/ContactText'; -import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia'; +import ContactSplit from '@/components/sections/contact/ContactSplit'; +import FaqBase from '@/components/sections/faq/FaqBase'; import FeatureCardNineteen from '@/components/sections/feature/FeatureCardNineteen'; -import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal'; +import FooterBase from '@/components/sections/footer/FooterBase'; import HeroSplitTestimonial from '@/components/sections/hero/HeroSplitTestimonial'; import MetricCardFourteen from '@/components/sections/metrics/MetricCardFourteen'; import MetricSplitMediaAbout from '@/components/sections/about/MetricSplitMediaAbout'; @@ -22,31 +22,19 @@ export default function LandingPage() { contentWidth="mediumSmall" sizing="mediumLargeSizeMediumTitles" background="floatingGradient" - cardStyle="layered-gradient" - primaryButtonStyle="gradient" - secondaryButtonStyle="radial-glow" - headingFontWeight="extrabold" + cardStyle="glass-elevated" + primaryButtonStyle="diagonal-gradient" + secondaryButtonStyle="glass" + headingFontWeight="semibold" > @@ -182,27 +72,9 @@ export default function LandingPage() { textboxLayout="default" useInvertedBackground={false} features={[ - { - tag: "Residential", - title: "Custom Home Builds", - subtitle: "Luxury living, crafted.", - description: "Bespoke custom homes tailored to your lifestyle and aesthetic requirements.", - imageSrc: "http://img.b2bpic.net/free-photo/attic-kitchen-wooden-ceiling-modern-blue-fronts_169016-68929.jpg", - }, - { - tag: "Architectural", - title: "Facilitated Renovation", - subtitle: "Modernizing legacy.", - description: "Transforming historic or outdated spaces into modern masterpieces.", - imageSrc: "http://img.b2bpic.net/free-photo/closeup-architects-working-with-drawings-using-gadgets_1262-18412.jpg", - }, - { - tag: "Commercial", - title: "Sustainable Development", - subtitle: "Eco-friendly design.", - description: "High-efficiency commercial building that maximizes style and performance.", - imageSrc: "http://img.b2bpic.net/free-photo/modern-office-space-with-futuristic-decor-furniture_23-2151797688.jpg", - }, + { tag: "Residential", title: "Custom Home Builds", subtitle: "Luxury living, crafted.", description: "Bespoke custom homes tailored to your lifestyle and aesthetic requirements." }, + { tag: "Architectural", title: "Renovations", subtitle: "Modernizing legacy.", description: "Transforming historic or outdated spaces into modern masterpieces." }, + { tag: "Commercial", title: "Development", subtitle: "Sustainable design.", description: "High-efficiency commercial building that maximizes style and performance." }, ]} title="Our Specialized Services" description="Tailored construction solutions that meet the highest standards of luxury and durability." @@ -215,23 +87,10 @@ export default function LandingPage() { title="Our Impact" tag="Trusted By Many" metrics={[ - { - id: "m1", - value: "98%", - description: "On-time Delivery Rate", - }, - { - id: "m2", - value: "50+", - description: "Expert Craftsmen on Staff", - }, - { - id: "m3", - value: "15+", - description: "Design Awards Won", - }, + { id: "m1", value: "98%", description: "On-time Delivery Rate" }, + { id: "m2", value: "50+", description: "Expert Craftsmen" }, + { id: "m3", value: "15+", description: "Design Awards" }, ]} - metricsAnimation="slide-up" /> @@ -240,45 +99,9 @@ export default function LandingPage() { animationType="slide-up" textboxLayout="default" useInvertedBackground={false} - testimonials={[ - { - id: "t1", - name: "Sarah", - role: "Homeowner", - testimonial: "West Bend made the process seamless and stress-free. Could not be happier.", - imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-smiley-man-showing-approval_23-2148269355.jpg", - }, - { - id: "t2", - name: "David", - role: "Architect", - testimonial: "Their attention to the blueprint and material quality is unparalleled.", - imageSrc: "http://img.b2bpic.net/free-photo/young-happy-student-girl-with-dark-curly-hair-sitting-stairs-university-with-textbooks-knees-cup-coffee-go-hand-joyfully-looking-friend_574295-3958.jpg", - }, - { - id: "t3", - name: "Elena", - role: "Developer", - testimonial: "Professional, punctual, and highly skilled in every phase of build.", - imageSrc: "http://img.b2bpic.net/free-photo/blissful-tanned-woman-pajama-waving-hand-with-smile-amazing-caucasian-female-model-standing-balcony_197531-20975.jpg", - }, - { - id: "t4", - name: "Marcus", - role: "Homeowner", - testimonial: "West Bend redefined what quality construction means to our family.", - imageSrc: "http://img.b2bpic.net/free-photo/business-person-planning-alternative-energies_23-2149205440.jpg", - }, - { - id: "t5", - name: "Jessica", - role: "Business Owner", - testimonial: "Our commercial space is now a landmark. Thank you West Bend team.", - imageSrc: "http://img.b2bpic.net/free-photo/entrepreneur-collaborates-with-real-estate-team-experts_482257-95542.jpg", - }, - ]} + testimonials={[]} title="What Our Clients Say" - description="Honest feedback from homeowners and commercial partners who trusted our vision." + description="Honest feedback from partners who trusted our vision." /> @@ -286,100 +109,48 @@ export default function LandingPage() {
-
-
); -} +} \ No newline at end of file -- 2.49.1 From 747d6de220fbb064e9661f5adcaebd3c29829c2d Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 28 Apr 2026 21:56:07 +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 b7afc67..1cceb0b 100644 --- a/src/app/styles/variables.css +++ b/src/app/styles/variables.css @@ -10,15 +10,15 @@ --accent: #ffffff; --background-accent: #ffffff; */ - --background: #f5f4ef; - --card: #dad6cd; - --foreground: #2a2928; - --primary-cta: #2a2928; + --background: #fbfbfb; + --card: #f2f2f2; + --foreground: #1a1a1a; + --primary-cta: #1c1c1c; --primary-cta-text: #f5f4ef; - --secondary-cta: #ecebea; + --secondary-cta: #e5e5e5; --secondary-cta-text: #2a2928; - --accent: #ffffff; - --background-accent: #c6b180; + --accent: #c6b180; + --background-accent: #e0d7c0; /* text sizing - set by ThemeProvider */ /* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem); -- 2.49.1