Merge version_1_1781443361009 into main #3

Merged
bender merged 1 commits from version_1_1781443361009 into main 2026-06-14 13:25:13 +00:00

View File

@@ -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(() => {