7 Commits

Author SHA1 Message Date
4be586b53e Merge version_2 into main
Merge version_2 into main
2026-04-01 19:51:52 +00:00
1193464925 Update src/app/page.tsx 2026-04-01 19:51:49 +00:00
5d5bf73984 Merge version_2 into main
Merge version_2 into main
2026-04-01 19:51:22 +00:00
b3fa4b1488 Update src/app/page.tsx 2026-04-01 19:51:19 +00:00
0b9c89b63a Merge version_1 into main
Merge version_1 into main
2026-04-01 19:46:06 +00:00
9fb6d83ba1 Merge version_1 into main
Merge version_1 into main
2026-04-01 19:45:42 +00:00
0ecc010502 Merge version_1 into main
Merge version_1 into main
2026-04-01 19:45:11 +00:00

View File

@@ -2,14 +2,14 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import { Zap } from "lucide-react";
import ContactSplit from '@/components/sections/contact/ContactSplit';
import { Zap, Mail } from "lucide-react";
import ContactFaq from '@/components/sections/contact/ContactFaq';
import FeatureCardTwentySix from '@/components/sections/feature/FeatureCardTwentySix';
import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
import HeroLogo from '@/components/sections/hero/HeroLogo';
import MetricSplitMediaAbout from '@/components/sections/about/MetricSplitMediaAbout';
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
import TestimonialCardTen from '@/components/sections/testimonial/TestimonialCardTen';
import TestimonialCardTwelve from '@/components/sections/testimonial/TestimonialCardTwelve';
export default function LandingPage() {
return (
@@ -95,36 +95,31 @@ export default function LandingPage() {
</div>
<div id="testimonials" data-section="testimonials">
<TestimonialCardTen
textboxLayout="default"
useInvertedBackground={false}
<TestimonialCardTwelve
cardTitle="Client Success Stories"
cardTag="Testimonials"
cardAnimation="slide-up"
useInvertedBackground={true}
testimonials={[
{
id: "1", title: "Amazing Results", quote: "Great service, my yard has never looked better!", name: "Local Homeowner", role: "Residential Client", imageSrc: "http://img.b2bpic.net/free-photo/horizontal-portrait-beautiful-positive-young-european-female-blue-shirt-dress-relaxing-home-looking-front-with-easy-carefree-smile_343059-3894.jpg"},
{
id: "2", title: "Highly Reliable", quote: "Very reliable and professional. Highly recommend.", name: "Alexandria Resident", role: "Residential Client", imageSrc: "http://img.b2bpic.net/free-photo/trendy-students-taking-photo_23-2147655789.jpg"},
{
id: "3", title: "Top Notch Quality", quote: "Loan Landscaping transformed my backyard into a beautiful space.", name: "David W.", role: "Homeowner", imageSrc: "http://img.b2bpic.net/free-photo/portrait-beautiful-young-woman-smiling_23-2148454539.jpg"},
{
id: "4", title: "Attention to Detail", quote: "Excellent work and very respectful of our property.", name: "Sarah P.", role: "Commercial Client", imageSrc: "http://img.b2bpic.net/free-photo/grandfather-with-granddaughter-yard-with-firewood-hands_1157-30528.jpg?_wi=1"},
{
id: "5", title: "Exceeded Expectations", quote: "The team was prompt, efficient, and left the garden looking pristine.", name: "Michael R.", role: "Residential Client", imageSrc: "http://img.b2bpic.net/free-photo/grandfather-with-granddaughter-yard-with-firewood-hands_1157-30528.jpg?_wi=2"},
{ id: "1", name: "Alexandria Resident", imageSrc: "http://img.b2bpic.net/free-photo/horizontal-portrait-beautiful-positive-young-european-female-blue-shirt-dress-relaxing-home-looking-front-with-easy-carefree-smile_343059-3894.jpg" },
{ id: "2", name: "Happy Homeowner", imageSrc: "http://img.b2bpic.net/free-photo/trendy-students-taking-photo_23-2147655789.jpg" },
{ id: "3", name: "David W.", imageSrc: "http://img.b2bpic.net/free-photo/portrait-beautiful-young-woman-smiling_23-2148454539.jpg" }
]}
title="What Our Clients Say"
description="We are proud to serve our community with excellence and reliability."
/>
</div>
<div id="contact" data-section="contact">
<ContactSplit
useInvertedBackground={true}
background={{
variant: "plain"}}
tag="Contact Us"
title="Get Your Free Estimate"
description="Call now or get a free estimate to transform your outdoor space! Serving Alexandria, VA and surrounding areas."
imageSrc="http://img.b2bpic.net/free-photo/cheerful-senior-man-cutting-overgrown-bushes_651396-1547.jpg"
mediaAnimation="slide-up"
<ContactFaq
ctaTitle="Ready to transform your yard?"
ctaDescription="Get a free consultation with our landscaping experts today."
ctaButton={{ text: "Get in Touch", href: "#contact" }}
ctaIcon={Mail}
useInvertedBackground={false}
animationType="blur-reveal"
faqs={[
{ id: "1", title: "Do you provide free estimates?", content: "Yes, we provide free estimates for all landscaping services in Alexandria, VA." },
{ id: "2", title: "Are you licensed and insured?", content: "Yes, our team is fully licensed and insured for your peace of mind." }
]}
/>
</div>
@@ -134,24 +129,13 @@ export default function LandingPage() {
columns={[
{
title: "Services", items: [
{
label: "Lawn Maintenance", href: "#services"},
{
label: "Hardscaping", href: "#services"},
{
label: "Yard Cleanup", href: "#services"},
{ label: "Lawn Maintenance", href: "#services" },
{ label: "Hardscaping", href: "#services" },
],
},
{
title: "Location", items: [
{
label: "5512 Oakwood Rd, Alexandria, VA 22310", href: "#"},
],
},
{
title: "Contact", items: [
{
label: "Email: info@loanlandscaping.com", href: "mailto:info@loanlandscaping.com"},
{ label: "5512 Oakwood Rd, Alexandria, VA 22310", href: "#" },
],
},
]}
@@ -160,4 +144,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}