diff --git a/src/components/sections/hero/HeroBillboard.tsx b/src/components/sections/hero/HeroBillboard.tsx index da9e35f..ae2be24 100644 --- a/src/components/sections/hero/HeroBillboard.tsx +++ b/src/components/sections/hero/HeroBillboard.tsx @@ -1,93 +1,29 @@ -"use client"; +import React from '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 = () => { return ( -
-
- -
- +
+
+
+

+ Build Beautiful Components +

+

+ Create stunning web applications with our modern component library. + Fast, reliable, and beautiful. +

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