From f135615dff5b4d06fe3a661014618c34d6561401 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 15 Apr 2026 19:07:58 +0000 Subject: [PATCH 1/2] Update src/app/page.tsx --- src/app/page.tsx | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index f9b5c34..5dc4359 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -10,7 +10,7 @@ import HeroSplitKpi from '@/components/sections/hero/HeroSplitKpi'; import MetricCardSeven from '@/components/sections/metrics/MetricCardSeven'; import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered'; import TestimonialAboutCard from '@/components/sections/about/TestimonialAboutCard'; -import { Leaf, Phone, MapPin, Mail } from "lucide-react"; +import { Leaf, Phone, MapPin, Mail, Instagram, Facebook, Twitter } from "lucide-react"; export default function LandingPage() { return ( @@ -155,11 +155,13 @@ export default function LandingPage() { title="Start Your Project | Inicie su Proyecto" description="Fill out the form to schedule a site visit today." inputs={[ - { name: "name", type: "text", placeholder: "Full Name" }, - { name: "email", type: "email", placeholder: "Email Address" } + { name: "name", type: "text", placeholder: "Full Name", required: true }, + { name: "email", type: "email", placeholder: "Email Address", required: true } ]} - textarea={{ name: "message", placeholder: "Describe your landscaping project...", rows: 4 }} + textarea={{ name: "message", placeholder: "Describe your landscaping project...", rows: 4, required: true }} imageSrc="http://img.b2bpic.net/free-photo/gardener-woman-working-garden-greenhouse_23-2148165251.jpg" + buttonText="Send Request" + mediaAnimation="slide-up" /> @@ -169,7 +171,8 @@ export default function LandingPage() { socialLinks={[ { icon: Phone, href: "tel:+15410000000", ariaLabel: "Phone" }, { icon: Mail, href: "mailto:info@junior-construction.com", ariaLabel: "Email" }, - { icon: MapPin, href: "#", ariaLabel: "Location" } + { icon: Instagram, href: "#", ariaLabel: "Instagram" }, + { icon: Facebook, href: "#", ariaLabel: "Facebook" } ]} copyrightText="© 2025 | Junior Construction LLC. All rights reserved." /> -- 2.49.1 From 1e9ccceb50afe4301b550ec1a1956964270f12d4 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 15 Apr 2026 19:07:59 +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 5f144b6..777fe5e 100644 --- a/src/app/styles/variables.css +++ b/src/app/styles/variables.css @@ -10,15 +10,15 @@ --accent: #ffffff; --background-accent: #ffffff; */ - --background: #fafffb; - --card: #f7fffa; - --foreground: #001a0a; - --primary-cta: #0a7039; + --background: #fdfdfb; + --card: #f2f4f1; + --foreground: #1a2e1d; + --primary-cta: #2d5a36; --primary-cta-text: #fafffb; - --secondary-cta: #ffffff; + --secondary-cta: #e8ebe9; --secondary-cta-text: #001a0a; - --accent: #a8d9be; - --background-accent: #6bbf8e; + --accent: #b8c9b8; + --background-accent: #d6e0d6; /* text sizing - set by ThemeProvider */ /* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem); -- 2.49.1