4 Commits

Author SHA1 Message Date
74ece4215d Update src/app/page.tsx 2026-04-27 05:09:44 +00:00
245a332e60 Update src/app/page.tsx 2026-04-27 05:09:17 +00:00
123d284eea Merge version_1 into main
Merge version_1 into main
2026-04-27 05:05:48 +00:00
cdfa0e2c99 Merge version_1 into main
Merge version_1 into main
2026-04-27 05:05:23 +00:00

View File

@@ -6,13 +6,13 @@ import ContactText from '@/components/sections/contact/ContactText';
import FaqDouble from '@/components/sections/faq/FaqDouble';
import FeatureCardTwentySix from '@/components/sections/feature/FeatureCardTwentySix';
import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
import HeroSplitDualMedia from '@/components/sections/hero/HeroSplitDualMedia';
import HeroBillboardGallery from '@/components/sections/hero/HeroBillboardGallery';
import MetricCardFourteen from '@/components/sections/metrics/MetricCardFourteen';
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
import ProductCardThree from '@/components/sections/product/ProductCardThree';
import TestimonialCardFive from '@/components/sections/testimonial/TestimonialCardFive';
import TextAbout from '@/components/sections/about/TextAbout';
import { History, Leaf, Zap, Palette, History as HistoryIcon, Leaf as LeafIcon } from "lucide-react";
import { History, Leaf, Zap, Palette } from "lucide-react";
export default function LandingPage() {
return (
@@ -43,18 +43,17 @@ export default function LandingPage() {
</div>
<div id="hero" data-section="hero">
<HeroSplitDualMedia
<HeroBillboardGallery
background={{ variant: "gradient-bars" }}
title="Transform Your Outdoors into a Masterpiece"
description="Josean Landscaping delivers exceptional landscape design, maintenance, and installation services. From lush green lawns to stunning hardscapes, we create spaces you'll love."
tag="Expert Landscaping Services"
mediaItems={[
{ imageSrc: "http://img.b2bpic.net/free-photo/view-backyard-garden-digital-art-style_23-2151488208.jpg", imageAlt: "Landscaping service" },
{ imageSrc: "http://img.b2bpic.net/free-photo/collection-garden-equipment-meadow_23-2148028911.jpg", imageAlt: "Gardening tools" }
{ imageSrc: "http://img.b2bpic.net/free-photo/collection-garden-equipment-meadow_23-2148028911.jpg", imageAlt: "Gardening tools" },
{ imageSrc: "http://img.b2bpic.net/free-photo/beautiful-shot-pathway-park-surrounded-by-grasses-flowers_181624-20486.jpg?_wi=1", imageAlt: "Pathway" }
]}
mediaAnimation="slide-up"
rating={5}
ratingText="Based on 150+ happy clients"
tagIcon={Leaf}
/>
</div>
@@ -73,7 +72,7 @@ export default function LandingPage() {
textboxLayout="default"
useInvertedBackground={true}
features={[
{ title: "Hardscaping", description: "Beautiful, durable pathways and patios.", imageSrc: "http://img.b2bpic.net/free-photo/beautiful-shot-pathway-park-surrounded-by-grasses-flowers_181624-20486.jpg", buttonIcon: Zap },
{ title: "Hardscaping", description: "Beautiful, durable pathways and patios.", imageSrc: "http://img.b2bpic.net/free-photo/beautiful-shot-pathway-park-surrounded-by-grasses-flowers_181624-20486.jpg?_wi=2", buttonIcon: Zap },
{ title: "Lawn Maintenance", description: "Regular care for a healthy lawn.", imageSrc: "http://img.b2bpic.net/free-photo/city-park_1127-3452.jpg", buttonIcon: Zap },
{ title: "Planting & Trimming", description: "Expert plant and hedge care.", imageSrc: "http://img.b2bpic.net/free-photo/gardener_23-2148013417.jpg", buttonIcon: Zap },
{ title: "Irrigation Systems", description: "Smart water management solutions.", imageSrc: "http://img.b2bpic.net/free-photo/fork-harrows-grass_1339-7746.jpg", buttonIcon: Zap },
@@ -169,4 +168,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}