function ThemesSection() { const mobile = useMobile(); return (
{THEMES.map((t, i) => )}
); } function ThemeCard({ theme, index }) { const [hover, setHover] = useState(false); return ( setHover(true)} onMouseLeave={() => setHover(false)} style={{ position: "relative", aspectRatio: "4/3", overflow: "hidden", background: "var(--paper)", display: "block" }}>
{String(index + 1).padStart(2, "0")} / 06
{theme.label}
{theme.count} articoli ESPLORA →
); } window.ThemesSection = ThemesSection;