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