From 151bb38c6518d2a545416f344b133702ebf15ae1 Mon Sep 17 00:00:00 2001 From: "Builder.io" Date: Sat, 18 Oct 2025 01:42:50 +0000 Subject: [PATCH] Restore original hero text and old feature cards; add platform cards as a second grid cgen-e6a54c9d23134fd498d1328c6545be22 --- client/pages/Index.tsx | 69 +++++++++++++++++++++++++++++++++++++++--- 1 file changed, 65 insertions(+), 4 deletions(-) diff --git a/client/pages/Index.tsx b/client/pages/Index.tsx index 68774d40..a6641c64 100644 --- a/client/pages/Index.tsx +++ b/client/pages/Index.tsx @@ -16,8 +16,11 @@ import { ArrowRight, CheckCircle, Sparkles, - LayoutDashboard, + Zap, + Target, Users, + TrendingUp, + LayoutDashboard, Microscope, IdCard, } from "lucide-react"; @@ -43,6 +46,33 @@ export default function Index() { }, []); const features = [ + { + title: "Game Development", + description: "Full‑cycle production and tooling", + icon: Zap, + color: "from-blue-500 to-purple-600", + }, + { + title: "Product Design", + description: "UX/UI, prototyping, and branding", + icon: Target, + color: "from-purple-500 to-pink-600", + }, + { + title: "Platform Engineering", + description: "Web, mobile, and backend foundations", + icon: Users, + color: "from-green-500 to-blue-600", + }, + { + title: "Community & Growth", + description: "Programs, content, and engagement", + icon: TrendingUp, + color: "from-orange-500 to-red-600", + }, + ]; + + const platformFeatures = [ { title: "Dashboard", description: "Your projects, applications, and rewards — in one place", @@ -245,10 +275,10 @@ export default function Index() { AeThex

- The AeThex Platform + Crafting Digital Realities

- Build in public, grow with community, and manage your work — from profile to production. + Where vision meets execution. We craft experiences through design, development, and community.

@@ -260,7 +290,38 @@ export default function Index() { const isActive = activeSection === index; return ( setActiveSection(index)} + > + +
+ +
+

{feature.title}

+

+ {feature.description} +

+
+
+ ); + })} + + + {/* Platform Feature Cards */} +
+ {platformFeatures.map((feature, index) => { + const Icon = feature.icon; + const isActive = activeSection === index; + return ( +