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

); }