import React from 'react'; import ImageFlex from './ImageFlex.jsx'; // Overlapping image grid that sits below the hero and overlaps upwards by ~1/3. export default function HeroOverlapGrid({ count = 3 }) { const items = Array.from({ length: 3 }, (_, i) => i + 1); return (
); }