Merge version_2 into main #2

Merged
bender merged 2 commits from version_2 into main 2026-04-23 20:58:47 +00:00
2 changed files with 10 additions and 7 deletions

View File

@@ -44,6 +44,7 @@ export default function ContactPage() {
]}
textarea={{ name: "message", placeholder: "Describe your project", rows: 5, required: true }}
buttonText="Submit Request"
useInvertedBackground={false}
/>
<div className="max-w-4xl mx-auto px-6 py-12 grid md:grid-cols-2 gap-12">
@@ -64,6 +65,8 @@ export default function ContactPage() {
</div>
<FooterSimple
bottomLeftText="© 2024 GreenScape"
bottomRightText="All rights reserved."
columns={[
{ title: "Services", items: [{ label: "Design", href: "/#services" }, { label: "Installation", href: "/#services" }] },
{ title: "Company", items: [{ label: "About", href: "/#about" }, { label: "Contact", href: "/contact" }] },

View File

@@ -6,12 +6,8 @@ import NavbarStyleFullscreen from "@/components/navbar/NavbarStyleFullscreen/Nav
import HeroOverlayTestimonial from "@/components/sections/hero/HeroOverlayTestimonial";
import TestimonialAboutCard from "@/components/sections/about/TestimonialAboutCard";
import FeatureCardNineteen from "@/components/sections/feature/FeatureCardNineteen";
import TeamCardSix from "@/components/sections/team/TeamCardSix";
import TeamCardOne from "@/components/sections/team/TeamCardOne";
import TestimonialCardTwelve from "@/components/sections/testimonial/TestimonialCardTwelve";
import FaqDouble from "@/components/sections/faq/FaqDouble";
import PricingCardFive from "@/components/sections/pricing/PricingCardFive";
import ContactSplitForm from "@/components/sections/contact/ContactSplitForm";
import FaqDouble from "@/components/sections/faq/FaqDouble";
import FooterSimple from "@/components/sections/footer/FooterSimple";
import { Leaf, TreePine } from "lucide-react";
@@ -62,10 +58,12 @@ export default function LandscapingPage() {
testimonials={[
{
name: "Sarah M.", handle: "Homeowner", testimonial: "GreenScape completely transformed our backyard. The team was professional, creative, and delivered beyond our expectations.", rating: 5,
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/team-2.jpg", imageAlt: "Sarah M."},
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/team-2.jpg", imageAlt: "Sarah M."
},
{
name: "David K.", handle: "Property Manager", testimonial: "We've used GreenScape for all our commercial properties. Their maintenance plans keep everything looking pristine year-round.", rating: 5,
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/team-1.jpg", imageAlt: "David K."},
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/team-1.jpg", imageAlt: "David K."
},
]}
/>
</div>
@@ -135,6 +133,8 @@ export default function LandscapingPage() {
<div id="footer" data-section="footer">
<FooterSimple
bottomLeftText="© 2024 GreenScape"
bottomRightText="All rights reserved."
columns={[
{ title: "Services", items: [{ label: "Design", href: "#services" }, { label: "Installation", href: "#services" }] },
{ title: "Company", items: [{ label: "About", href: "#about" }, { label: "Contact", href: "/contact" }] },