"use client"; import { cn } from "@/lib/utils"; interface MarqueeProps { children: React.ReactNode; className?: string; speed?: "slow" | "normal" | "fast"; pauseOnHover?: boolean; } export default function Marquee({ children, className, speed = "normal", pauseOnHover = false, }: MarqueeProps) { const speedClass = { slow: "animate-marquee-slow", normal: "animate-marquee", fast: "animate-marquee-fast", }; return (