import '../css/hero.css'; export default function Hero({ imageURL = '/images/hero.jpg', heading = 'TJHSST SGA', }: { imageURL?: string; heading?: string; }) { return (
{heading} Background
); }