3 Commits

Author SHA1 Message Date
f8d7e934ce Merge version_2 into main
Merge version_2 into main
2026-05-09 19:33:30 +00:00
d05c96824d Update src/app/page.tsx 2026-05-09 19:33:27 +00:00
06d32e9d41 Merge version_1 into main
Merge version_1 into main
2026-05-09 19:29:12 +00:00

View File

@@ -10,7 +10,6 @@ import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis'
import HeroBillboardScroll from '@/components/sections/hero/HeroBillboardScroll';
import MetricCardTwo from '@/components/sections/metrics/MetricCardTwo';
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
import ProductCardThree from '@/components/sections/product/ProductCardThree';
import TestimonialCardTwelve from '@/components/sections/testimonial/TestimonialCardTwelve';
import { Award, CheckCircle, Star } from "lucide-react";
@@ -36,8 +35,6 @@ export default function LandingPage() {
name: "About", id: "about"},
{
name: "Services", id: "features"},
{
name: "Work", id: "products"},
{
name: "Contact", id: "contact"},
]}
@@ -102,31 +99,6 @@ export default function LandingPage() {
/>
</div>
<div id="products" data-section="products">
<ProductCardThree
animationType="slide-up"
textboxLayout="default"
gridVariant="three-columns-all-equal-width"
useInvertedBackground={false}
products={[
{
id: "p1", name: "Curb Appeal Refresh", price: "Custom", imageSrc: "http://img.b2bpic.net/free-photo/grass-background_1127-3417.jpg"},
{
id: "p2", name: "Garden Bed Design", price: "Custom", imageSrc: "http://img.b2bpic.net/free-photo/close-up-old-abandoned-house-village_1268-15652.jpg"},
{
id: "p3", name: "Hardscape Pathway", price: "Custom", imageSrc: "http://img.b2bpic.net/free-photo/empty-wood-chair-living-room_1339-7076.jpg"},
{
id: "p4", name: "Full Lawn Renovation", price: "Custom", imageSrc: "http://img.b2bpic.net/free-photo/back-view-woman-plants_23-2148224017.jpg"},
{
id: "p5", name: "Seasonal Flower Planting", price: "Custom", imageSrc: "http://img.b2bpic.net/free-photo/woman-with-pruner-tending-flowers_23-2147768531.jpg"},
{
id: "p6", name: "Backyard Patio Installation", price: "Custom", imageSrc: "http://img.b2bpic.net/free-photo/man-servant-caring-garden_23-2149530837.jpg"},
]}
title="Recent Projects"
description="Take a look at how we transform Maryland homes."
/>
</div>
<div id="testimonial" data-section="testimonial">
<TestimonialCardTwelve
useInvertedBackground={false}
@@ -228,4 +200,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}