import type { ReactNode } from "react"; export function HeroKicker({ children }: { children: ReactNode }) { return ( {children} ); }