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 AvatarGroup from "@/components/ui/AvatarGroup"; type HeroOverlayStatisticsProps = { title: string; description: string; primaryButton: { text: string; href: string }; secondaryButton: { text: string; href: string }; avatarsSrc?: string[]; avatarsLabel?: string; statistics?: { title: string; subtitle: string }[]; textAnimation: "slide-up" | "fade-blur" | "fade"; } & ({ imageSrc: string; videoSrc?: never } | { videoSrc: string; imageSrc?: never }); const HeroOverlayStatistics = ({ title, description, primaryButton, secondaryButton, imageSrc, videoSrc, avatarsSrc, avatarsLabel, statistics, textAnimation, }: HeroOverlayStatisticsProps) => { return (
); }; export default HeroOverlayStatistics;