import Layout from "@/components/Layout"; import { Card, CardContent, CardHeader, CardTitle, CardDescription, } from "@/components/ui/card"; import { Badge } from "@/components/ui/badge"; import { Button } from "@/components/ui/button"; import { Input } from "@/components/ui/input"; import { Textarea } from "@/components/ui/textarea"; import { Label } from "@/components/ui/label"; import { Select, SelectContent, SelectItem, SelectTrigger, SelectValue } from "@/components/ui/select"; import { aethexToast } from "@/lib/aethex-toast"; import { Rocket, Cpu, Users, Shield, Zap, GitBranch, MessageSquare } from "lucide-react"; import { useState } from "react"; export default function About() { const values = [ { icon: , title: "Integrity", desc: "Transparent processes, honest communication, dependable delivery.", }, { icon: , title: "Excellence", desc: "Relentless attention to quality, performance, and user experience.", }, { icon: , title: "Partnership", desc: "We win with our customers, not at their expense.", }, ]; const capabilities = [ { title: "Product Engineering", points: [ "Web & Mobile Apps", "Realtime & AI Systems", "3D & Game Experiences", ], }, { title: "Platform & Infra", points: [ "Cloud-native Architecture", "DevOps & Observability", "Security & Compliance", ], }, { title: "Advisory & Enablement", points: [ "Technical Strategy", "Codebase Modernization", "Team Upskilling", ], }, ]; const milestones = [ { kpi: "99.9%", label: "Uptime targets" }, { kpi: "10x", label: "Perf improvements" }, { kpi: "50+", label: "Projects shipped" }, { kpi: "<30d", label: "MVP timelines" }, ]; const [name, setName] = useState(""); const [email, setEmail] = useState(""); const [topic, setTopic] = useState("community"); const [message, setMessage] = useState(""); const [isSending, setIsSending] = useState(false); const submit = async (e: React.FormEvent) => { e.preventDefault(); if (!name.trim() || !email.trim() || !message.trim()) { aethexToast.error({ title: "Missing info", description: "Please fill out all fields." }); return; } setIsSending(true); try { aethexToast.success({ title: "Thanks!", description: "We’ll follow up about your request." }); setName(""); setEmail(""); setMessage(""); setTopic("community"); } catch (err: any) { aethexToast.error({ title: "Failed to send", description: err?.message || "Try again." }); } finally { setIsSending(false); } }; return (

About AeThex

AeThex is a community-driven platform for builders, game developers, and clients to create together. We craft reliable, scalable software—shipping fast without compromising quality. From prototypes to global platforms, we partner end-to-end: strategy, design, engineering, and growth.

What this site is about: a social, collaborative hub to share work, post updates, discover projects, and level up through mentorship, open-source, and real-time community features.
TypeScript React Node Supabase Edge
Mission Turn bold ideas into useful, loved software. {capabilities.map((c) => (
{c.title}
    {c.points.map((p) => (
  • {p}
  • ))}
))}
{milestones.map((m) => (
{m.kpi}
{m.label}
))}
Our Approach Opinionated engineering, measurable outcomes. {values.map((v) => (
{v.icon} {v.title}

{v.desc}

))}
Timeline From humble beginnings to a thriving community (2011 → today). {[ { year: "2011", title: "First open-source experiments", desc: "Indie tools and game mods shared with small dev circles.", }, { year: "2013", title: "Early indie projects", desc: "Shipped community prototypes; grew a network of collaborators.", }, { year: "2015", title: "Community hub v1", desc: "Forums, showcases, and lightweight collaboration features.", }, { year: "2017", title: "Cloud-native foundations", desc: "Scaled infra, observability, and CI/CD to support growth.", }, { year: "2019", title: "Realtime systems", desc: "Live updates, notifications, and multiplayer primitives.", }, { year: "2021", title: "Open-source toolkit", desc: "Reusable UI, data, and deployment patterns for rapid builds.", }, { year: "2023", title: "Community events", desc: "Mentorship programs, workshops, and collaborative sprints.", }, { year: "2024", title: "Network + Dashboard", desc: "Creator-centric dashboard and social graph foundations.", }, { year: "2025", title: "Realtime feed", desc: "Vertical feed with follows, reactions, and guided onboarding.", }, ].map((item) => (
{item.year} • {item.title}
{item.desc}
))}
Get involved Reach out about community, collaboration, or mentorship.
setName(e.target.value)} placeholder="Your name" />
setEmail(e.target.value)} placeholder="you@example.com" />