import { HeroVideo } from "@/components/docs-components/hero-video";
import React from "react";
export function HeroVideoSound() {
return (
<div className="flex flex-col items-center justify-center py-12">
<HeroVideo
className="dark:hidden block"
videoSrc="https://www.youtube.com/embed/SAnLQABTF5A?si=oiXgKWLe7PLKv0Ev"
thumbnailSrc="https://startup-template-sage.vercel.app/hero-light.png"
thumbnailAlt="Hero Video"
soundSrc="/sounds/whoosh-motion.mp3"
enableSound={true}
/>
<HeroVideo
className="hidden dark:block"
videoSrc="https://www.youtube.com/embed/SAnLQABTF5A?si=oiXgKWLe7PLKv0Evb"
thumbnailSrc="https://startup-template-sage.vercel.app/hero-dark.png"
thumbnailAlt="Hero Video"
soundSrc="/sounds/whoosh-motion.mp3"
enableSound={true}
/>
</div>
);
}