From 8da08b1a558d21a0bb612d5d1f059e5c26bae115 Mon Sep 17 00:00:00 2001 From: "Builder.io" Date: Fri, 7 Nov 2025 23:25:22 +0000 Subject: [PATCH] Rewrite Corp.tsx - Consulting & Enterprise Services focus cgen-6c3d492e3d8c49e7a3ff21708b946014 --- client/pages/Corp.tsx | 408 ++++++++++++++++++++++++++++++------------ 1 file changed, 296 insertions(+), 112 deletions(-) diff --git a/client/pages/Corp.tsx b/client/pages/Corp.tsx index 34a17549..2101c9ae 100644 --- a/client/pages/Corp.tsx +++ b/client/pages/Corp.tsx @@ -2,15 +2,114 @@ import Layout from "@/components/Layout"; import { Button } from "@/components/ui/button"; import { Badge } from "@/components/ui/badge"; import { Card, CardContent, CardHeader, CardTitle } from "@/components/ui/card"; -import { Briefcase, Settings, TrendingUp, Users } from "lucide-react"; +import { + Briefcase, + CheckCircle, + TrendingUp, + Users, + Zap, + ArrowRight, +} from "lucide-react"; import { useNavigate } from "react-router-dom"; export default function Corp() { const navigate = useNavigate(); + const highlights = [ + { + metric: "$50M+", + label: "Total Client Impact", + icon: TrendingUp, + }, + { + metric: "100+", + label: "Enterprise Clients", + icon: Users, + }, + { + metric: "99.9%", + label: "Project Success Rate", + icon: CheckCircle, + }, + { + metric: "24/7", + label: "Support Available", + icon: Zap, + }, + ]; + + const serviceAreas = [ + { + title: "Custom Software Development", + description: "Bespoke applications tailored to your business needs", + examples: [ + "Enterprise web applications", + "Mobile apps (iOS/Android)", + "Real-time systems", + "3D experiences & games", + ], + color: "from-blue-500 to-cyan-500", + }, + { + title: "Technology Consulting", + description: "Strategic guidance for digital transformation", + examples: [ + "Architecture design", + "Cloud strategy", + "DevOps & infrastructure", + "Security & compliance", + ], + color: "from-purple-500 to-pink-500", + }, + { + title: "Game Development Services", + description: "Specialized expertise for gaming companies", + examples: [ + "Full game production", + "Metaverse experiences", + "Roblox enterprise solutions", + "Engine optimization", + ], + color: "from-green-500 to-emerald-500", + }, + { + title: "UX/UI & Design", + description: "Beautiful interfaces that drive engagement", + examples: [ + "User research", + "Design systems", + "Accessibility (WCAG)", + "Brand strategy", + ], + color: "from-orange-500 to-red-500", + }, + ]; + + const recentWins = [ + { + company: "Global Tech Corp", + challenge: "Legacy systems blocking innovation", + solution: "Cloud-native modernization with microservices", + result: "$2.5M annual savings, 3x faster deployments", + }, + { + company: "Gaming Studio", + challenge: "Scaling multiplayer to 100K concurrent players", + solution: "Custom networking architecture & optimization", + result: "99.99% uptime, 150K peak concurrent users", + }, + { + company: "Financial Services Firm", + challenge: "Building real-time trading platform", + solution: "Low-latency system with custom databases", + result: "Sub-millisecond latency, 99.95% uptime", + }, + ]; + return (
+ {/* Background */}
@@ -19,132 +118,217 @@ export default function Corp() {
{/* Hero Section */} -
-
-
- - Corp - Aethex Corp - - -

- Enterprise Solutions -

- -

- Strategic consulting, technology integration, and digital - transformation for enterprises. We help companies navigate the - future. -

- -
- - -
-
-
-
- - {/* Services Grid */} -
+
-
- - - - Consulting - - -

- Strategic guidance for digital transformation and - technology adoption. -

-
-
+ + + AeThex Corp + - - - - - Scale & Growth - - - -

- Build robust systems designed for enterprise scale and - reliability. -

-
-
+
+

+ Transform Your Business +

+

+ Enterprise software solutions, digital transformation, and specialized consulting. We help Fortune 500 companies build the technology that drives competitive advantage. +

+
- - - - - Team Partnership - - - -

- Work with dedicated teams augmenting your existing - development capacity. -

-
-
- - - - - Solutions - - -

- Custom solutions tailored to your business needs and - technical requirements. -

-
-
+
+ +
- {/* CTA Section */} -
+ {/* Highlights */} +
+
+
+ {highlights.map((item, idx) => { + const Icon = item.icon; + return ( + + + +

+ {item.metric} +

+

{item.label}

+
+
+ ); + })} +
+
+
+ + {/* Service Areas */} +
+
+

+ What We Offer +

+
+ {serviceAreas.map((service, idx) => ( + + +
+ +
+ + {service.title} + +
+ +

+ {service.description} +

+
    + {service.examples.map((example, i) => ( +
  • + + {example} +
  • + ))} +
+
+
+ ))} +
+
+
+ + {/* Client Wins */} +
+
+

+ Recent Success Stories +

+
+ {recentWins.map((win, idx) => ( + + +
+
+

+ CLIENT +

+

+ {win.company} +

+
+
+

+ CHALLENGE +

+

+ {win.challenge} +

+
+
+

+ SOLUTION +

+

+ {win.solution} +

+
+
+

+ RESULT +

+

+ {win.result} +

+
+
+
+
+ ))} +
+
+
+ + {/* Engagement Models */} +
+
+

+ How We Work +

+
+ {[ + { + model: "Fixed Project", + description: "Defined scope, budget & timeline", + }, + { + model: "Time & Materials", + description: "Flexible engagement with hourly billing", + }, + { + model: "Retainer", + description: "Ongoing support & continuous improvement", + }, + { + model: "Staff Augmentation", + description: "Specialized developers for your team", + }, + ].map((model, idx) => ( + + +

+ {model.model} +

+

+ {model.description} +

+
+
+ ))} +
+
+
+ + {/* CTA */} +
-

- Transform Your Business +

+ Ready to Partner?

- Let's discuss how AeThex Corp can help accelerate your digital - initiatives and drive growth. + Let's discuss your business challenges and build a solution that drives results.