'use client'; import { useState, useEffect } from 'react'; export default function SimPlatformMockup() { const [isMobile, setIsMobile] = useState(false); useEffect(() => { const checkMobile = () => setIsMobile(window.innerWidth < 768); checkMobile(); window.addEventListener('resize', checkMobile); return () => window.removeEventListener('resize', checkMobile); }, []); // Simple mobile version - just the essence of cross-platform if (isMobile) { return (
{/* Active Platform - Clean */}
iR
iRacing
Active
{/* Simple "more coming" indicator */}
More platforms coming
); } // Desktop version return (
Platform Support
Active: 1 | Planned: 3
{/* iRacing - Active */}
iR
iRacing
Active
Full integration
{/* ACC - Future */}
AC
ACC
Planned
Coming later
{/* rFactor 2 - Future */}
rF
rFactor 2
Planned
Coming later
{/* LMU - Future */}
LM
Le Mans Ult.
Planned
Coming later
Your identity stays with you across platforms
); }