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 (
Build the world's most powerful AI company. From startup to AGI.
Or pick one:
Manage data centers, train models, serve millions of users, and achieve AGI.