A fun retro TV component with a classic DVD logo bouncing around the screen. Resize it, change colors, tweak the speed — and relive the 2000s!
import { RetroDvdTv } from "@/components/ui/retro-dvd-tv"; const settings = { speed: 10, colorCycle: false, }; export default function DemoOne(props: Partial<typeof settings>) { const s = { ...settings, ...props }; return ( <RetroDvdTv width="40rem" height="30rem" logoText="DVD" speed={s.speed} // lower = slower, higher = faster color="#ff00ff" // base color if colorCycle={s.colorCycle} colorCycle={true} // set false to keep solid color /> ); }