'use client'; import React, { useEffect, useState } from 'react'; import { motion } from 'framer-motion'; export const TileGrid = () => { const [mounted, setMounted] = useState(false); useEffect(() => { setMounted(true); }, []); if (!mounted) return null; const rows = 15; const cols = 20; return (