From 7527e0a7929ce290be2fb784d4be4b129c33e441 Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Thu, 4 Jun 2026 11:08:59 +0000 Subject: [PATCH] Bob AI: Replaced hero section with custom JSX to show 3 floating ico --- src/pages/HomePage/sections/HeroNew.tsx | 66 +++++++++++++++++++++---- 1 file changed, 57 insertions(+), 9 deletions(-) diff --git a/src/pages/HomePage/sections/HeroNew.tsx b/src/pages/HomePage/sections/HeroNew.tsx index 1638269..ccf9b99 100644 --- a/src/pages/HomePage/sections/HeroNew.tsx +++ b/src/pages/HomePage/sections/HeroNew.tsx @@ -2,19 +2,67 @@ import React from 'react'; import HeroBillboardFeatures from '@/components/sections/hero/HeroBillboardFeatures'; +import { motion } from 'framer-motion'; +import Button from '@/components/ui/Button'; +import Tag from '@/components/ui/Tag'; +import ImageOrVideo from '@/components/ui/ImageOrVideo'; +import { Leaf, Sun, Droplet } from 'lucide-react'; export default function HeroNewSection(): React.JSX.Element { return (
- +
+
+ +

+ Transform Your Landscape with Expertise and Care +

+

+ At GreenScape Landscaping, we bring your vision to life. From lush gardens to functional outdoor living spaces, our team delivers unparalleled design, installation, and maintenance services. +

+
+
+ +
+ + + {/* Floating Card 1 */} + + + + + {/* Floating Card 2 */} + + + + + {/* Floating Card 3 */} + + + +
+
+
); } -- 2.49.1