import { AnimatedDudeWithWire } from '../../client-pages/referrals/graphics/dude'; import { type ReactNode } from 'react'; export const CompetitionsHeader = ({ title, children, }: { title: string; children?: ReactNode; }) => { return (

{title}

{children}
); };