From d8c1920a1ee66955954e417321ef9d1d959695fa Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 21 Apr 2026 03:05:44 +0000 Subject: [PATCH 1/2] Update src/app/page.tsx --- src/app/page.tsx | 160 ++++++++--------------------------------------- 1 file changed, 26 insertions(+), 134 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 623200b..929a9f9 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -10,7 +10,6 @@ import MetricCardFourteen from '@/components/sections/metrics/MetricCardFourteen import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple'; import ProductCardTwo from '@/components/sections/product/ProductCardTwo'; import SplitAbout from '@/components/sections/about/SplitAbout'; -import TestimonialCardSix from '@/components/sections/testimonial/TestimonialCardSix'; export default function LandingPage() { return ( @@ -30,14 +29,10 @@ export default function LandingPage() { -
- -
-
@@ -221,30 +134,9 @@ export default function LandingPage() { imageSrc="http://img.b2bpic.net/free-photo/modern-style-building_1137-69.jpg" logoText="EstateView" columns={[ - { - title: "Company", items: [ - { - label: "About", href: "#about"}, - { - label: "Careers", href: "#"}, - ], - }, - { - title: "Resources", items: [ - { - label: "Guides", href: "#"}, - { - label: "Blog", href: "#"}, - ], - }, - { - title: "Legal", items: [ - { - label: "Privacy", href: "#"}, - { - label: "Terms", href: "#"}, - ], - }, + { title: "Company", items: [{ label: "About", href: "#about" }, { label: "Careers", href: "#" }] }, + { title: "Resources", items: [{ label: "Guides", href: "#" }, { label: "Blog", href: "#" }] }, + { title: "Legal", items: [{ label: "Privacy", href: "#" }, { label: "Terms", href: "#" }] }, ]} /> -- 2.49.1 From 7e37123c5cfde1a9de23535b08bffc12cb1f5115 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 21 Apr 2026 03:05:44 +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 cad0f71..b168257 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: #e8e4dc; - --foreground: #2a2928; - --primary-cta: #2a2928; + --background: #f6f0e9; + --card: #efe7dd; + --foreground: #2b180a; + --primary-cta: #2b180a; --primary-cta-text: #f5f4ef; - --secondary-cta: #fcfaf7; + --secondary-cta: #efe7dd; --secondary-cta-text: #2a2928; - --accent: #c6b180; - --background-accent: #e0d3b6; + --accent: #94877c; + --background-accent: #afa094; /* text sizing - set by ThemeProvider */ /* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem); -- 2.49.1