5 Commits

Author SHA1 Message Date
be66baedd7 Update src/app/page.tsx 2026-03-06 20:39:32 +00:00
b6bb190731 Update src/app/layout.tsx 2026-03-06 20:39:32 +00:00
26ce54abfc Merge version_2 into main
Merge version_2 into main
2026-03-06 20:29:33 +00:00
ab1046125e Update src/app/page.tsx 2026-03-06 20:29:28 +00:00
f198d5f8b3 Merge version_1 into main
Merge version_1 into main
2026-03-06 20:23:05 +00:00
2 changed files with 9 additions and 1418 deletions

File diff suppressed because it is too large Load Diff

View File

@@ -2,7 +2,7 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline";
import HeroLogo from "@/components/sections/hero/HeroLogo";
import HeroBillboard from "@/components/sections/hero/HeroBillboard";
import MetricSplitMediaAbout from "@/components/sections/about/MetricSplitMediaAbout";
import FeatureCardSeven from "@/components/sections/feature/FeatureCardSeven";
import TestimonialCardThirteen from "@/components/sections/testimonial/TestimonialCardThirteen";
@@ -38,16 +38,17 @@ export default function LandingPage() {
</div>
<div id="hero" data-section="hero">
<HeroLogo
logoText="Gaspar's Landscaping"
<HeroBillboard
title="Gaspar's Landscaping"
description="Beautiful Lawns. Reliable Service. Trusted Local Professionals."
background={{ variant: "sparkles-gradient" }}
buttons={[
{ text: "View Services", href: "services" },
{ text: "Get Free Estimate", href: "contact" },
]}
imageSrc="http://img.b2bpic.net/free-photo/kids-learnign-about-environment_23-2149176599.jpg"
imageAlt="Professional lawn care and landscaping service"
showDimOverlay={true}
mediaAnimation="slide-up"
/>
</div>
@@ -71,6 +72,9 @@ export default function LandingPage() {
title="Our Services"
description="Comprehensive landscaping solutions tailored to your property needs"
tag="Services"
buttons={[
{ text: "View All Services", href: "#services" }
]}
features={[
{
id: 1,
@@ -212,4 +216,4 @@ export default function LandingPage() {
</div>
</ThemeProvider>
);
}
}