diff --git a/src/components/sections/hero/HeroVideoExpand.tsx b/src/components/sections/hero/HeroVideoExpand.tsx index be98244..49ab3a5 100644 --- a/src/components/sections/hero/HeroVideoExpand.tsx +++ b/src/components/sections/hero/HeroVideoExpand.tsx @@ -1,6 +1,12 @@ import { useState, useEffect, useCallback } from 'react'; -export default function HeroVideoExpand({ title, description, onComplete }: any) { +interface HeroVideoExpandProps { + title: string; + description: string; + onComplete?: () => void; +} + +export default function HeroVideoExpand({ title, description, onComplete }: HeroVideoExpandProps) { const [isPlaying, setIsPlaying] = useState(false); const handleComplete = useCallback(() => {