From dd7429f6fea14451f93c17f1b002199bb9c9d573 Mon Sep 17 00:00:00 2001 From: "Builder.io" Date: Sun, 28 Sep 2025 22:00:21 +0000 Subject: [PATCH] Add Featured Studios state to Admin panel cgen-31fb755689d0455383d0bd1a09097dee --- client/pages/Admin.tsx | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/client/pages/Admin.tsx b/client/pages/Admin.tsx index cbae4593..2bf2aff4 100644 --- a/client/pages/Admin.tsx +++ b/client/pages/Admin.tsx @@ -27,6 +27,12 @@ export default function Admin() { const navigate = useNavigate(); const isOwner = Array.isArray(roles) && roles.includes("owner"); const [demoProfiles, setDemoProfiles] = useState([]); + type Studio = { name: string; tagline?: string; metrics?: string; specialties?: string[] }; + const [studios, setStudios] = useState([ + { name: "Lone Star Studio", tagline: "Indie craftsmanship with AAA polish", metrics: "Top-rated indie hits", specialties: ["Unity", "Unreal", "Pixel Art"] }, + { name: "AeThex | GameForge", tagline: "High-performance cross-platform experiences", metrics: "Billions of player sessions", specialties: ["Roblox", "Backend", "LiveOps"] }, + { name: "Gaming Control", tagline: "Strategy, simulation, and systems-first design", metrics: "Award-winning franchises", specialties: ["Simulation", "AI/ML", "Economy"] }, + ]); useEffect(() => { try {