'use client';
import { Stack } from '@/ui/Stack';
import { Text } from '@/ui/Text';
import { useEffect, useState } from 'react';
export 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
);
}