diff --git a/client/pages/corp/CorpAbout.tsx b/client/pages/corp/CorpAbout.tsx new file mode 100644 index 00000000..8f3e8aeb --- /dev/null +++ b/client/pages/corp/CorpAbout.tsx @@ -0,0 +1,107 @@ +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 { Target, Briefcase, Users, Award } from "lucide-react"; +import { useNavigate } from "react-router-dom"; + +export default function CorpAbout() { + const navigate = useNavigate(); + + return ( + +
+ {/* Animated backgrounds */} +
+
+
+
+
+ +
+ {/* Header */} +
+
+ + +

+ About AeThex Corp +

+

+ Enterprise solutions for game development studios +

+
+
+ + {/* Content */} +
+
+
+

Our Mission

+

+ AeThex Corp provides world-class consulting and enterprise solutions to help studios scale their + operations, optimize their infrastructure, and navigate the complexities of enterprise game development. + We partner with industry leaders to deliver transformative results. +

+
+ + {/* Values */} +
+ + + + Strategy + + +

+ Strategic guidance aligned with your business goals +

+
+
+ + + + Expertise + + +

+ Deep industry expertise and proven methodologies +

+
+
+ + + + Partnership + + +

+ True partnership to achieve your objectives together +

+
+
+ + + + Results + + +

+ Measurable outcomes that drive real business value +

+
+
+
+
+
+
+
+ + ); +} diff --git a/client/pages/devlink/DevLinkAbout.tsx b/client/pages/devlink/DevLinkAbout.tsx new file mode 100644 index 00000000..44cf852b --- /dev/null +++ b/client/pages/devlink/DevLinkAbout.tsx @@ -0,0 +1,107 @@ +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 { Users, Zap, TrendingUp, Globe } from "lucide-react"; +import { useNavigate } from "react-router-dom"; + +export default function DevLinkAbout() { + const navigate = useNavigate(); + + return ( + +
+ {/* Animated backgrounds */} +
+
+
+
+
+ +
+ {/* Header */} +
+
+ + +

+ About Dev-Link +

+

+ The professional network for Roblox developers +

+
+
+ + {/* Content */} +
+
+
+

Our Mission

+

+ Dev-Link is a professional networking platform designed specifically for Roblox developers. We + connect talented creators, studios, and teams to build meaningful professional relationships, + discover opportunities, and advance careers in the thriving Roblox ecosystem. +

+
+ + {/* Values */} +
+ + + + Connection + + +

+ Connecting Roblox developers with peers and opportunities +

+
+
+ + + + Impact + + +

+ Creating tangible career and business opportunities +

+
+
+ + + + Growth + + +

+ Supporting career advancement and professional development +

+
+
+ + + + Community + + +

+ Building a vibrant global community of Roblox creators +

+
+
+
+
+
+
+
+ + ); +} diff --git a/client/pages/foundation/FoundationAbout.tsx b/client/pages/foundation/FoundationAbout.tsx new file mode 100644 index 00000000..8ce60c66 --- /dev/null +++ b/client/pages/foundation/FoundationAbout.tsx @@ -0,0 +1,107 @@ +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 { Heart, Users, BookOpen, Code } from "lucide-react"; +import { useNavigate } from "react-router-dom"; + +export default function FoundationAbout() { + const navigate = useNavigate(); + + return ( + +
+ {/* Animated backgrounds */} +
+
+
+
+
+ +
+ {/* Header */} +
+
+ + +

+ About AeThex Foundation +

+

+ Empowering developers through education and open source +

+
+
+ + {/* Content */} +
+
+
+

Our Mission

+

+ AeThex Foundation is dedicated to democratizing game development through education, open-source + software, and community engagement. We believe that making powerful development tools and knowledge + freely available lifts the entire industry and empowers creators of all skill levels. +

+
+ + {/* Values */} +
+ + + + Community + + +

+ Building inclusive communities of passionate developers +

+
+
+ + + + Open Source + + +

+ Maintaining and advancing open-source projects +

+
+
+ + + + Education + + +

+ Creating accessible learning resources for all levels +

+
+
+ + + + Mentorship + + +

+ Supporting the next generation of game developers +

+
+
+
+
+
+
+
+ + ); +} diff --git a/client/pages/gameforge/GameForgeAbout.tsx b/client/pages/gameforge/GameForgeAbout.tsx new file mode 100644 index 00000000..990dbf71 --- /dev/null +++ b/client/pages/gameforge/GameForgeAbout.tsx @@ -0,0 +1,107 @@ +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 { Zap, Target, Users, Lightbulb } from "lucide-react"; +import { useNavigate } from "react-router-dom"; + +export default function GameForgeAbout() { + const navigate = useNavigate(); + + return ( + +
+ {/* Animated backgrounds */} +
+
+
+
+
+ +
+ {/* Header */} +
+
+ + +

+ About GameForge +

+

+ Empowering developers to ship faster and better +

+
+
+ + {/* Content */} +
+
+
+

Our Mission

+

+ GameForge is dedicated to accelerating game development by providing studios with the tools, + practices, and infrastructure they need to maintain monthly shipping cycles. We believe that faster + iteration leads to better games and happier teams. +

+
+ + {/* Values */} +
+ + + + Speed + + +

+ Fast iteration cycles that keep your team productive +

+
+
+ + + + Reliability + + +

+ Stable tools and practices you can depend on +

+
+
+ + + + Community + + +

+ Support from developers and studios using GameForge +

+
+
+ + + + Innovation + + +

+ Continuous improvement driven by user feedback +

+
+
+
+
+
+
+
+ + ); +}