Merge version_2 into main #3

Merged
bender merged 1 commits from version_2 into main 2026-04-19 20:45:17 +00:00

View File

@@ -7,12 +7,11 @@ import FaqDouble from '@/components/sections/faq/FaqDouble';
import FeatureCardTwentySix from '@/components/sections/feature/FeatureCardTwentySix';
import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
import HeroSplitDoubleCarousel from '@/components/sections/hero/HeroSplitDoubleCarousel';
import SplitAbout from '@/components/sections/about/SplitAbout';
import MetricCardThree from '@/components/sections/metrics/MetricCardThree';
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
import ProductCardOne from '@/components/sections/product/ProductCardOne';
import TestimonialCardSixteen from '@/components/sections/testimonial/TestimonialCardSixteen';
import { Leaf, Award, MapPin, Mail, Phone, Clock } from "lucide-react";
import { Leaf, Award, MapPin, Phone } from "lucide-react";
export default function LandingPage() {
return (
@@ -32,10 +31,10 @@ export default function LandingPage() {
<div id="nav" data-section="nav">
<NavbarStyleFullscreen
navItems={[
{ name: "Services", id: "#services" },
{ name: "Why Us", id: "#why-choose-us" },
{ name: "Gallery", id: "#gallery" },
{ name: "Reviews", id: "#testimonials" },
{ name: "Services", id: "services" },
{ name: "Why Us", id: "why-choose-us" },
{ name: "Gallery", id: "gallery" },
{ name: "Reviews", id: "testimonials" },
]}
brandName="Walter's Landscape"
button={{ text: "Get a Quote", href: "#contact" }}
@@ -74,6 +73,7 @@ export default function LandingPage() {
description="We've built our reputation on quality, reliability, and local expertise."
animationType="slide-up"
textboxLayout="split"
useInvertedBackground={false}
metrics={[
{ id: "1", icon: Award, title: "Satisfaction", value: "4.9/5" },
{ id: "2", icon: MapPin, title: "Homestead", value: "Local" },
@@ -88,6 +88,7 @@ export default function LandingPage() {
description="See the results of our professional landscape design and maintenance projects."
gridVariant="four-items-2x2-equal-grid"
animationType="slide-up"
textboxLayout="split"
useInvertedBackground={false}
products={[
{ id: "g1", name: "Garden Design", price: "View", imageSrc: "http://img.b2bpic.net/free-photo/path-passing-through-grass_1252-1048.jpg" },
@@ -119,6 +120,7 @@ export default function LandingPage() {
description="Here are answers to some of our most frequently asked questions."
faqsAnimation="slide-up"
textboxLayout="default"
useInvertedBackground={false}
faqs={[
{ id: "f1", title: "Do you offer free quotes?", content: "Yes! Contact us today." },
{ id: "f2", title: "Are you licensed?", content: "Yes, fully licensed and insured." },
@@ -139,7 +141,7 @@ export default function LandingPage() {
<div id="footer" data-section="footer">
<FooterBaseCard
logoText="Walter's Landscape"
columns={[{ title: "Contact", items: [{ label: "Call Now", href: "tel:+13055550123" }] }, { title: "Links", items: [{ label: "Home", href: "#" }] }]}
columns={[{ title: "Contact", items: [{ label: "Call Now", href: "tel:+13055550123" }] }, { title: "Links", items: [{ label: "Home", href: "/" }] }]}
/>
</div>
</ReactLenis>