import { Box, Flex, SimpleGrid, Text } from "@chakra-ui/react"
import NextImage from "next/image"
interface VideoCardProps {
image: string
title: string
href: string
}
const VideoCard = (props: VideoCardProps) => {
const { image, title, href } = props
return (
{title}
)
}
export const FeaturedVideo = () => {
return (
)
}