import React from 'react'; import './VideoBubble.scss'; interface VideoBubbleProps { title: string; href?: string; className?: string; } export default function VideoBubble({ title, href, className, }: VideoBubbleProps) { return (