'use client' import {motion} from 'framer-motion' import clsx from 'clsx' type SmallHeroProps = { title: string subtitle?: string backgroundImage?: string blurBackground?: boolean className?: string } const SmallHero = ({ title, subtitle, backgroundImage, blurBackground, className = 'py-36' }: SmallHeroProps) => { const hasImage = !!backgroundImage const baseTextColor = hasImage ? 'text-white' : 'text-foreground' const subtitleTextColor = hasImage ? 'text-white/80' : 'text-muted-foreground' return (