diff --git a/src/components/sections/hero/HeroBillboard.js b/src/components/sections/hero/HeroBillboard.js index 8f47c5a..7eb3db1 100644 --- a/src/components/sections/hero/HeroBillboard.js +++ b/src/components/sections/hero/HeroBillboard.js @@ -1,45 +1,55 @@ import React from 'react'; -import { ArrowRight } from 'lucide-react'; +import { Play, ChevronDown } from 'lucide-react'; -function HeroBillboard() { +const HeroBillboard = () => { return ( -
-
- -
-
-

- Build Amazing - Web Experiences -

+
+ {/* Background Image */} +
+ Hero Background +
+
+ + {/* Content */} +
+

+ Innovation + + Redefined + +

+ +

+ Experience the future of technology with our cutting-edge solutions designed to transform your digital landscape. +

+ + {/* CTA Buttons */} +
+ -

- Create stunning, responsive websites with our modern component library. - Fast, accessible, and beautifully designed. -

- -
- - - -
- -
- Hero Banner -
+
-
- ); -} -export default HeroBillboard; \ No newline at end of file + {/* Scroll Indicator */} +
+ +
+ + {/* Decorative Elements */} +
+
+ + ); +}; + +export default HeroBillboard;