export default function Home() { const apps = [ { title: "Playground", description: "Customize & learn", icon: "📱", url: process.env.PLAYGROUND_URL || "http://localhost:3001", gradient: "from-purple-500 to-pink-500", }, { title: "chatkit.world", description: "See a demo", icon: "🌍", url: process.env.WORLD_URL || "http://localhost:3002", gradient: "from-emerald-500 to-teal-500", }, ]; return (

ChatKit Studio

Explore and build embeddable chat experiences

{apps.map((app) => (
{app.icon}

{app.title}

{app.description}

))}
); }