mirror of
https://github.com/shadcn-ui/ui.git
synced 2026-06-11 09:51:40 +00:00
20 lines
433 B
TypeScript
20 lines
433 B
TypeScript
"use client"
|
|
|
|
import { AspectRatio } from "@/components/ui/aspect-ratio"
|
|
|
|
export function PromoVideo() {
|
|
return (
|
|
<AspectRatio
|
|
ratio={16 / 9}
|
|
className="overflow-hidden rounded-lg border bg-white shadow-xl"
|
|
>
|
|
<video autoPlay muted playsInline>
|
|
<source
|
|
src="https://ui-shadcn.s3.amazonaws.com/ui-promo-hd.mp4"
|
|
type="video/mp4"
|
|
/>
|
|
</video>
|
|
</AspectRatio>
|
|
)
|
|
}
|