"use client"; import { MOD_GAMES } from "@/data/content"; import { useStaggerReveal } from "@/hooks/useAnimations"; import ModGameSection from "@/components/ModGameSection"; import "../styles/mods.css"; /** The mods tab: every game I've modded, each with its own list. */ export default function ModsGrid() { const visible = useStaggerReveal(MOD_GAMES.length, 100); return (
{"# mods"}

{"Games I've modded"}

{MOD_GAMES.map((game, i) => ( ))}
); }