import Card from '@/components/ui/card/card'; import { cn } from '@/lib/utils'; import Text from 'components/ui/text'; interface BlurbSectionProps { disabled: boolean; blurbs: any; title: string; mobileLayout: string; desktopLayout: string; imageFormat: 'square' | 'portrait' | 'landscape'; } const BlurbSection = ({ disabled, title, mobileLayout, desktopLayout, blurbs, imageFormat }: BlurbSectionProps) => { const gridLayout = desktopLayout === '2-column' ? 'lg:grid-cols-2' : desktopLayout === '3-column' ? 'lg:grid-cols-3' : 'lg:grid-cols-4'; if (disabled) { return; } return (