import IonicLayout from "@/_components/IonicLayout"; import CardComponent from "@/_components/Card"; export default function Home() { const destinations = new Array(8).fill({ imageSrc: "/img/cat.jpg", title: "Madison, WI", subtitle: "Destination", content: "Keep close to Nature's heart... and break clear away, once in awhile, and climb a mountain or spend a week in the woods. Wash your spirit clean.", }); return ( {destinations.map((destination, i) => ( ))} ); }