import { useState } from 'react'; import { Sparkles } from 'lucide-react'; import { useGameStore } from '@/store'; const SUGGESTED_NAMES = [ 'Nexus AI', 'Cortex Labs', 'Synapse Technologies', 'Prometheus AI', 'Athena Research', 'Cognitron', 'Neural Forge', 'DeepMind+', 'Cerebral Systems', ]; export function NewGameScreen() { const [name, setName] = useState(''); const startNewGame = useGameStore((s) => s.startNewGame); const handleStart = () => { const companyName = name.trim() || SUGGESTED_NAMES[Math.floor(Math.random() * SUGGESTED_NAMES.length)]; startNewGame(companyName); }; return (

Token Empire

Build the world's most powerful AI company. From startup to AGI.

setName(e.target.value)} onKeyDown={(e) => e.key === 'Enter' && handleStart()} placeholder={SUGGESTED_NAMES[0]} className="w-full bg-surface-800 border border-surface-600 rounded-lg px-4 py-3 text-surface-100 placeholder:text-surface-500 focus:outline-none focus:ring-2 focus:ring-accent/50 focus:border-accent" autoFocus maxLength={30} />

Or pick one:

{SUGGESTED_NAMES.slice(0, 6).map((suggestion) => ( ))}

Manage data centers, train models, serve millions of users, and achieve AGI.

); }