Files
web/apps/scandic-web/components/Blocks/VideoCard/index.tsx
Erik Tiekstra 0597b09c08 Feat/BOOK-257 videoplayer with card
* feat(BOOK-257): Added VideoPlayer with card component
* feat(BOOK-257): Added queries and component for VideoCard block to Content and Collection pages
* fix(BOOK-257): Only setting object-fit: cover on the video if it is not fullscreen
* feat(BOOK-257): Added queries and component for VideoCard block to Startpage
* feat(BOOK-257): Added queries and component for Video block to content/collection/start page

Approved-by: Chuma Mcphoy (We Ahead)
2025-12-12 06:34:32 +00:00

14 lines
374 B
TypeScript

import { VideoWithCard } from "@scandic-hotels/design-system/VideoWithCard"
import type { VideoCard } from "@scandic-hotels/trpc/types/blocks"
interface VideoCardBlockProps extends Pick<VideoCard, "video_card"> {}
export function VideoCardBlock({ video_card }: VideoCardBlockProps) {
if (!video_card) {
return null
}
return <VideoWithCard {...video_card} />
}