From a6630895e19f475ff2e0100a30f54fc1c6502f6d Mon Sep 17 00:00:00 2001 From: "Builder.io" Date: Sat, 27 Sep 2025 22:57:44 +0000 Subject: [PATCH] Overhaul About and Contact pages; add Feed page; update routes and navigation cgen-c8da938048fe45ad9e9474f0e2f89b7d --- client/pages/About.tsx | 134 ++++++++++++++++++++++++++++++++--------- 1 file changed, 106 insertions(+), 28 deletions(-) diff --git a/client/pages/About.tsx b/client/pages/About.tsx index e72ff97e..adbc1783 100644 --- a/client/pages/About.tsx +++ b/client/pages/About.tsx @@ -1,39 +1,117 @@ 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 -

-

- AeThex crafts digital realities through cutting-edge engineering and - design. Our team builds products, tools, and experiences that - empower developers, creators, and organizations. -

-
-
-

Mission

-

- Deliver world-class software that turns bold ideas into reality. +

+
+
+

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 +
+
-
-

What we do

-

- Apps, platforms, research, and consulting across web, game, and - AI. -

-
-
-

Values

-

- Quality, transparency, long-term partnerships. -

-
-
+ + + 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.
+
+
+ +