5 Commits

Author SHA1 Message Date
3bbd70cf95 Merge version_3 into main
Merge version_3 into main
2026-05-08 13:19:53 +00:00
6cea9571f2 Update src/app/page.tsx 2026-05-08 13:19:47 +00:00
dcc4cff0ef Merge version_2 into main
Merge version_2 into main
2026-05-08 13:11:54 +00:00
da409c2ad0 Update src/app/page.tsx 2026-05-08 13:11:48 +00:00
a00cfa4c59 Merge version_1 into main
Merge version_1 into main
2026-05-08 12:45:22 +00:00

View File

@@ -7,12 +7,12 @@ import ContactText from '@/components/sections/contact/ContactText';
import FaqDouble from '@/components/sections/faq/FaqDouble';
import FeatureCardSix from '@/components/sections/feature/FeatureCardSix';
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
import HeroCentered from '@/components/sections/hero/HeroCentered';
import HeroSplit from '@/components/sections/hero/HeroSplit';
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
import PricingCardThree from '@/components/sections/pricing/PricingCardThree';
import ProductCardThree from '@/components/sections/product/ProductCardThree';
import TestimonialCardSix from '@/components/sections/testimonial/TestimonialCardSix';
import { Award, Leaf, TrendingUp } from "lucide-react";
import { Award, Leaf, TrendingUp, Star } from "lucide-react";
export default function LandingPage() {
return (
@@ -42,25 +42,22 @@ export default function LandingPage() {
</div>
<div id="hero" data-section="hero">
<HeroCentered
background={{ variant: "plain" }}
<HeroSplit
background={{ variant: "sparkles-gradient" }}
title="Transforming Your Outdoors into Paradise"
description="Professional landscaping solutions for residential and commercial properties. We bring beauty to your backyard."
avatars={[
{ src: "http://img.b2bpic.net/free-photo/pretty-girl-sunglasses-dreamily-looking-camera-with-pink-balloons-hand-confetti-around-white-background-isolated_574295-732.jpg", alt: "Happy client portrait" },
{ src: "http://img.b2bpic.net/free-photo/young-beautiful-smiling-stylish-woman-coat-joyfully-looking-camera-walking-through-city-street_574295-2122.jpg", alt: "Smiling person in garden" },
{ src: "http://img.b2bpic.net/free-photo/beautiful-woman-works-garden-near-house_1157-23426.jpg", alt: "Happy house garden client" },
{ src: "http://img.b2bpic.net/free-photo/woman-repotting-houseplant-inside-her-house_53876-132023.jpg", alt: "Woman repotting plant" },
{ src: "http://img.b2bpic.net/free-photo/senior-old-man-eldery-puring-water-taking-care-small-tree-table-garden_554837-89.jpg", alt: "Senior man gardening" }
]}
buttons={[{ text: "Get a Free Estimate", href: "#contact" }]}
imageSrc="http://img.b2bpic.net/free-photo/pretty-girl-sunglasses-dreamily-looking-camera-with-pink-balloons-hand-confetti-around-white-background-isolated_574295-732.jpg"
imageAlt="Beautiful garden transformation showcase"
marqueeItems={[
{ type: "text", text: "Eco-Friendly Design" },
{ type: "text", text: "Year-Round Maintenance" },
{ type: "text", text: "Local Expertise" },
{ type: "text", text: "Licensed Professionals" },
{ type: "text", text: "Precision Installation" }
{ type: "text-icon", text: "Rated 5/5 by our clients", icon: Star },
{ type: "image", src: "http://img.b2bpic.net/free-photo/pretty-girl-sunglasses-dreamily-looking-camera-with-pink-balloons-hand-confetti-around-white-background-isolated_574295-732.jpg", alt: "Client" },
{ type: "image", src: "http://img.b2bpic.net/free-photo/young-beautiful-smiling-stylish-woman-coat-joyfully-looking-camera-walking-through-city-street_574295-2122.jpg", alt: "Garden" },
{ type: "image", src: "http://img.b2bpic.net/free-photo/beautiful-woman-works-garden-near-house_1157-23426.jpg", alt: "Planting" },
{ type: "image", src: "http://img.b2bpic.net/free-photo/woman-repotting-houseplant-inside-her-house_53876-132023.jpg", alt: "Service" },
{ type: "image", src: "http://img.b2bpic.net/free-photo/senior-old-man-eldery-puring-water-taking-care-small-tree-table-garden_554837-89.jpg", alt: "Client" }
]}
marqueeSpeed={40}
/>
</div>