| 4 | import Script from 'next/script' |
| 5 | |
| 6 | interface HeroProps { |
| 7 | title: string |
| 8 | description: string |
| 9 | videoSrc: string |
| 10 | } |
| 11 | |
| 12 | export default function Hero({ title, description, videoSrc }: HeroProps) { |
| 13 | return ( |
nothing calls this directly
no outgoing calls
no test coverage detected