From 4e12e4c24c78e97501fcba095a299c3d99d0556b Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 14 Jun 2026 13:25:10 +0000 Subject: [PATCH] Update src/components/sections/hero/HeroVideoExpand.tsx --- src/components/sections/hero/HeroVideoExpand.tsx | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) 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(() => { -- 2.49.1