From 02bbdc5cd840e65d9407b1ad895d5b6e22cfcf3b Mon Sep 17 00:00:00 2001 From: development Date: Tue, 20 Jan 2026 15:22:40 +0000 Subject: [PATCH] Update src/components/sections/hero/HeroBillboard.tsx --- .../sections/hero/HeroBillboard.tsx | 117 +++++------------- 1 file changed, 33 insertions(+), 84 deletions(-) diff --git a/src/components/sections/hero/HeroBillboard.tsx b/src/components/sections/hero/HeroBillboard.tsx index da9e35f..c2cf106 100644 --- a/src/components/sections/hero/HeroBillboard.tsx +++ b/src/components/sections/hero/HeroBillboard.tsx @@ -1,93 +1,42 @@ -"use client"; +import React from 'react'; +import { ArrowRight, Play } from 'lucide-react'; -import TextBox from "@/components/Textbox"; -import MediaContent from "@/components/shared/MediaContent"; -import { cls } from "@/lib/utils"; -import type { LucideIcon } from "lucide-react"; -import type { ButtonConfig } from "@/types/button"; - -interface HeroBillboardProps { - title: string; - description: string; - tag?: string; - tagIcon?: LucideIcon; - buttons?: ButtonConfig[]; - imageSrc?: string; - videoSrc?: string; - imageAlt?: string; - videoAriaLabel?: string; - ariaLabel?: string; - className?: string; - containerClassName?: string; - textBoxClassName?: string; - titleClassName?: string; - descriptionClassName?: string; - tagClassName?: string; - buttonContainerClassName?: string; - buttonClassName?: string; - buttonTextClassName?: string; - mediaWrapperClassName?: string; - imageClassName?: string; -} - -const HeroBillboard = ({ - title, - description, - tag, - tagIcon, - buttons, - imageSrc, - videoSrc, - imageAlt = "", - videoAriaLabel = "Hero video", - ariaLabel = "Hero section", - className = "", - containerClassName = "", - textBoxClassName = "", - titleClassName = "", - descriptionClassName = "", - tagClassName = "", - buttonContainerClassName = "", - buttonClassName = "", - buttonTextClassName = "", - mediaWrapperClassName = "", - imageClassName = "", -}: HeroBillboardProps) => { +const HeroBillboard: React.FC = () => { return ( -
-
- -
- +
+
+ +
+
+

+ Build the Future + + Today + +

+ +

+ Transform your ideas into reality with our cutting-edge technology solutions. + Experience the power of innovation at your fingertips. +

+ +
+ + + +
+ +
); }; -HeroBillboard.displayName = "HeroBillboard"; - export default HeroBillboard; \ No newline at end of file