Add About page

cgen-66f8620f6d074eb78d420a9a40de7386
This commit is contained in:
Builder.io 2025-09-27 20:20:17 +00:00
parent 8fce2580ca
commit 8664b8612d

31
client/pages/About.tsx Normal file
View file

@ -0,0 +1,31 @@
import Layout from "@/components/Layout";
export default function About() {
return (
<Layout>
<div className="min-h-screen bg-aethex-gradient py-12">
<div className="container mx-auto px-4 max-w-4xl space-y-8">
<h1 className="text-3xl font-bold text-gradient-purple">About AeThex</h1>
<p className="text-muted-foreground">
AeThex crafts digital realities through cutting-edge engineering and design. Our team builds products,
tools, and experiences that empower developers, creators, and organizations.
</p>
<section className="grid md:grid-cols-3 gap-6">
<div className="p-6 rounded-xl bg-card/50 border border-border/50">
<h2 className="font-semibold mb-2">Mission</h2>
<p className="text-sm text-muted-foreground">Deliver world-class software that turns bold ideas into reality.</p>
</div>
<div className="p-6 rounded-xl bg-card/50 border border-border/50">
<h2 className="font-semibold mb-2">What we do</h2>
<p className="text-sm text-muted-foreground">Apps, platforms, research, and consulting across web, game, and AI.</p>
</div>
<div className="p-6 rounded-xl bg-card/50 border border-border/50">
<h2 className="font-semibold mb-2">Values</h2>
<p className="text-sm text-muted-foreground">Quality, transparency, long-term partnerships.</p>
</div>
</section>
</div>
</div>
</Layout>
);
}