From 96f8701f4c28d932a23a9a4f3b599bf8c9d64525 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 25 Mar 2026 05:10:25 +0000 Subject: [PATCH 1/2] Update src/app/page.tsx --- src/app/page.tsx | 15 +++++++++++---- 1 file changed, 11 insertions(+), 4 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 9bcd0b1..27566d0 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -156,7 +156,8 @@ export default function LandingPage() { title="Trusted by Leading Homeowners & Businesses" description="We've had the privilege of working with a diverse range of clients, building lasting relationships based on quality and trust." names={[]} - showCard={true} + showCard={false} + logoItemClassName="p-4 flex items-center justify-center" /> @@ -168,21 +169,27 @@ export default function LandingPage() { inputs={[ { name: "name", type: "text", placeholder: "Your Name", required: true, + className: "w-full p-3 border rounded-lg focus:outline-none focus:ring-2 focus:ring-primary-cta mb-4" }, { name: "email", type: "email", placeholder: "Your Email", required: true, + className: "w-full p-3 border rounded-lg focus:outline-none focus:ring-2 focus:ring-primary-cta mb-4" }, { - name: "phone", type: "tel", placeholder: "Phone Number"}, + name: "phone", type: "tel", placeholder: "Phone Number", className: "w-full p-3 border rounded-lg focus:outline-none focus:ring-2 focus:ring-primary-cta mb-4" + }, ]} textarea={{ - name: "message", placeholder: "Tell us about your project...", rows: 4, + name: "message", placeholder: "Tell us about your project...", rows: 6, + className: "w-full p-3 border rounded-lg focus:outline-none focus:ring-2 focus:ring-primary-cta mb-4" }} imageSrc="http://img.b2bpic.net/free-photo/man-watering-plants-backyard_23-2149591436.jpg" imageAlt="Man watering plants in a beautiful backyard" mediaAnimation="slide-up" mediaPosition="right" buttonText="Send Message" + formCardClassName="shadow-lg p-6 rounded-lg" + buttonClassName="w-full mt-4" /> @@ -227,4 +234,4 @@ export default function LandingPage() { ); -} \ No newline at end of file +} -- 2.49.1 From 13d1b3d4e2d394d7350f160ba0c7085784014572 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 25 Mar 2026 05:10:25 +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 2dcaaa0..9f2dace 100644 --- a/src/app/styles/variables.css +++ b/src/app/styles/variables.css @@ -10,15 +10,15 @@ --accent: #ffffff; --background-accent: #ffffff; */ - --background: #000802; - --card: #0b1a0b; - --foreground: #e6ffe6; - --primary-cta: #80da9b; + --background: #fcfbf8; + --card: #f6f4ed; + --foreground: #2e3a21; + --primary-cta: #1e6e3c; --primary-cta-text: #000802; - --secondary-cta: #07170b; + --secondary-cta: #e8efe0; --secondary-cta-text: #e6ffe6; - --accent: #38714a; - --background-accent: #2c6541; + --accent: #35a560; + --background-accent: #35a560; /* text sizing - set by ThemeProvider */ /* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem); -- 2.49.1