import Button from "@/components/ui/Button"; import HeroBackgroundSlot from "@/components/ui/HeroBackgroundSlot"; import TextAnimation from "@/components/ui/TextAnimation"; import ImageOrVideo from "@/components/ui/ImageOrVideo"; import AutoFillText from "@/components/ui/AutoFillText"; import ScrollReveal from "@/components/ui/ScrollReveal"; type HeroBillboardBrandProps = { brand: string; description: string; primaryButton: { text: string; href: string }; secondaryButton: { text: string; href: string }; } & ({ imageSrc: string; videoSrc?: never } | { videoSrc: string; imageSrc?: never }); const HeroBillboardBrand = ({ brand, description, primaryButton, secondaryButton, imageSrc, videoSrc, }: HeroBillboardBrandProps) => { return (
{brand}
); }; export default HeroBillboardBrand;