You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
nx-guitar-school/apps/website/components/home-section-video/home-section-video.tsx

28 lines
903 B

import styles from './home-section-video.module.scss';
/* eslint-disable-next-line */
export interface HomeSectionVideoProps {}
export function HomeSectionVideo(props: HomeSectionVideoProps) {
return (
<>
<section className="container relative max-w-screen-xl mx-auto relative flex flex-col justify-center mb-10">
<h2 className="font-bold w-full text-center mt-5 text-2xl mx-auto text-blue-800">
Démonstration en vidéo
</h2>
<p className="text-lg text-gray-500 mb-10 text-center">Rien ne vaut une démonstration pour convaincre !</p>
<iframe src="https://embed.api.video/vod/vi2JpEFEClejM7A4hhn6i7fU"
width="90%"
frameBorder="0"
scrolling="no"
className="mx-auto"
allowFullScreen={true}></iframe>
</section>
</>
);
}
export default HomeSectionVideo;