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 { Rocket, Cpu, Users, Shield, Zap, GitBranch } from "lucide-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" }, ]; return (

About AeThex

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.

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 Highlights from recent builds and launches.
2024 • Network + Dashboard
Shipped a creator-centric dashboard and social graph foundations.
2025 • Realtime Feed
Vertical feed with follow, reactions, and frictionless profile onboarding.
); }