feat: add gallery section to homepage

This commit is contained in:
kudinDmitriyUp
2026-05-08 11:16:13 +00:00
parent 092c4f7a70
commit ccd6fd2002

View File

@@ -1,6 +1,7 @@
import AboutFeaturesSplit from '@/components/sections/about/AboutFeaturesSplit'; import AboutFeaturesSplit from '@/components/sections/about/AboutFeaturesSplit';
import ContactCta from '@/components/sections/contact/ContactCta'; import ContactCta from '@/components/sections/contact/ContactCta';
import FeaturesRevealCards from '@/components/sections/features/FeaturesRevealCards'; import FeaturesRevealCards from '@/components/sections/features/FeaturesRevealCards';
import FeaturesMediaCards from '@/components/sections/features/FeaturesMediaCards';
import HeroOverlay from '@/components/sections/hero/HeroOverlay'; import HeroOverlay from '@/components/sections/hero/HeroOverlay';
import MetricsGradientCards from '@/components/sections/metrics/MetricsGradientCards'; import MetricsGradientCards from '@/components/sections/metrics/MetricsGradientCards';
import FeaturesDetailedSteps from '@/components/sections/features/FeaturesDetailedSteps'; import FeaturesDetailedSteps from '@/components/sections/features/FeaturesDetailedSteps';
@@ -197,3 +198,37 @@ export default function HomePage() {
</> </>
); );
} }
<div id="gallery" data-section="gallery">
<FeaturesMediaCards
tag="Our Gallery"
title="A Glimpse of Our Work"
description="Browse through some of our recent projects and see the transformations we've brought to life."
items={[
{
title: "Lush Garden Oasis",
description: "A complete garden redesign featuring native plants, a water feature, and a stone pathway.",
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-garden_1203-286.jpg",
videoSrc: "https://www.youtube.com/watch?v=dQw4w9WgXcQ"
},
{
title: "Modern Patio Living",
description: "An elegant and functional outdoor living space with a custom-built patio and fire pit.",
imageSrc: "http://img.b2bpic.net/free-photo/patio-with-wooden-furniture-green-plants_1340-23328.jpg",
videoSrc: "https://www.youtube.com/watch?v=dQw4w9WgXcQ"
},
{
title: "Pristine Lawn Care",
description: "Showcasing the results of our comprehensive lawn maintenance program.",
imageSrc: "http://img.b2bpic.net/free-photo/green-grass-texture_1194-2422.jpg",
videoSrc: "https://www.youtube.com/watch?v=dQw4w9WgXcQ"
},
{
title: "Vibrant Tree & Shrubbery",
description: "Expert care and pruning to enhance the natural beauty of trees and shrubs.",
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-tree-in-a-park_1057-3283.jpg",
videoSrc: "https://www.youtube.com/watch?v=dQw4w9WgXcQ"
},
]}
/>
</div>