From aeff53c616d732429c6e8ffdb63c517b1bc00b13 Mon Sep 17 00:00:00 2001 From: "Builder.io" Date: Sun, 19 Oct 2025 01:45:36 +0000 Subject: [PATCH] Add Transparency/Trust page with governance, policies, status, brand notice cgen-1589d81f9d3d49d4be34a2deaa695eaa --- client/pages/Trust.tsx | 94 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 94 insertions(+) create mode 100644 client/pages/Trust.tsx diff --git a/client/pages/Trust.tsx b/client/pages/Trust.tsx new file mode 100644 index 00000000..71905ed5 --- /dev/null +++ b/client/pages/Trust.tsx @@ -0,0 +1,94 @@ +import Layout from "@/components/Layout"; +import { Card, CardContent, CardDescription, CardHeader, CardTitle } from "@/components/ui/card"; +import { Badge } from "@/components/ui/badge"; +import { Button } from "@/components/ui/button"; +import { Link } from "react-router-dom"; +import { Shield, Gavel, Building2, FileText, Activity, Megaphone, CheckCircle2 } from "lucide-react"; + +export default function Trust() { + return ( + +
+
+
+ Transparency +

Company & Governance

+

+ Clear, verifiable information about AeThex: leadership, legal entity, jurisdiction, policies, and status. +

+
+ +
+ + + Organization + Basic corporate details and contact + + +
Legal name: AeThex Corporation
+
Jurisdiction: United States (Arizona)
+
Headquarters: Queen Creek, Arizona
+ +
Phone: (346) 556-7100
+
+
+ + + + Leadership & Governance + Accountability and oversight + + +
    +
  • Executive leadership details are being published in phased updates alongside board/advisor disclosures.
  • +
  • Operational policies and escalation paths are documented in the Transparency hub.
  • +
  • Verified channels: website, docs, and official social accounts noted below.
  • +
+
+
+
+ + + + Policies & Legal + Public policies and legal references + + + {[{title:"Privacy Policy", href:"/privacy"},{title:"Terms of Service", href:"/terms"},{title:"Status & Uptime", href:"/status"},{title:"Changelog", href:"/changelog"},{title:"Roadmap", href:"/roadmap"},{title:"Investors", href:"/investors"}].map((l)=> ( + + {l.title} + + ))} + + + + + + Brand Disambiguation + Preventing name confusion + + +

+ AeThex Corporation is an independent organization and is not affiliated with other entities that may use similar names. When in doubt, verify links against aethex.biz or aethex.dev. +

+

+ Official channels: +

+ +
+
+ +
+ + + +
+
+
+
+ ); +}