export async function load({ fetch }) { const data = await fetch("/api/community") const cards = await data.json() return { cards } }