import { Skeleton } from '@ballerine/ui'; import { FunctionComponent } from 'react'; import { Card } from '@/common/components/atoms/Card/Card'; import { CardContent } from '@/common/components/atoms/Card/Card.Content'; export interface CaseVideoGuideProps { title?: string; description?: string; thumbnailUrl?: string; videoSrc?: string; } export const CaseVideoGuide: FunctionComponent = ({ title = 'Onboarding Introduction', description = 'Learn about Ballerine complete onboarding and underwriting capabilities', videoSrc = 'https://www.loom.com/embed/efb8b2fdadef4fa79b4f8b412f1e4f4d?sid=02b86870-55ba-4914-bb59-24ba02121852&hideEmbedTopBar=true', }) => { return (
{/* Title and text section */}

{title}

{description}