AeThex-OS/client/src/os/apps/ManifestoApp.tsx

18 lines
1.1 KiB
XML

export function ManifestoApp() {
return (
<div className="min-h-full p-4 md:p-6 bg-slate-950 overflow-auto">
<div className="max-w-lg mx-auto font-mono text-xs md:text-sm leading-relaxed">
<h1 className="text-xl md:text-2xl font-display text-cyan-400 uppercase tracking-wider mb-4 md:mb-6">The AeThex Manifesto</h1>
<div className="space-y-4 text-white/80">
<p>We are the architects of tomorrow.</p>
<p>In a world where the digital and physical converge, we stand at the frontier of a new reality. The Metaverse is not just a destination - it is a canvas for human potential.</p>
<p className="text-cyan-400 font-bold">Our Three Pillars:</p>
<p><span className="text-purple-400">AXIOM</span> - The foundational truths that guide our work.</p>
<p><span className="text-yellow-400">CODEX</span> - The certification of excellence.</p>
<p><span className="text-green-400">AEGIS</span> - The shield that protects.</p>
<p className="mt-6 text-white italic">"Build. Certify. Protect. This is the way of the Architect."</p>
</div>
</div>
</div>
);
}