import Image from "next/image"; import CardsSvg from "@/images/cards.svg"; import { fetchSpaceRandomly } from "@/utils/network"; import { Shuffler } from "@/components/shuffler"; export default async function Home() { const space = await fetchSpaceRandomly(); const nextSpace = await fetchSpaceRandomly(); return (

Space Shuffler Cards

Find hidden gems from 180k Spaces

); }