'use client'; import {motion} from 'framer-motion'; export default function SubpageHero({ title, subtitle, }: { title: string; subtitle?: string; }) { return (
{title} {subtitle && ( {subtitle} )}
); }