"use client"; import type { Mod } from "@/data/content"; import ModCard from "@/components/ModCard"; import "../styles/mods.css"; type Props = { mods: Mod[]; visible?: boolean; }; /** The list of mods belonging to a single game. Two columns on desktop, one on mobile. */ export default function ModList({ mods, visible = true }: Props) { if (mods.length === 0) { return

Nothing published here yet.

; } return (
{mods.map((mod) => ( ))}
); }