From f752015a2a1f2bdb83074a5963da0d2717da2da9 Mon Sep 17 00:00:00 2001 From: "Builder.io" Date: Sun, 19 Oct 2025 02:01:13 +0000 Subject: [PATCH] Add Press Kit page with brand assets and guidelines cgen-27ead3324e904d5ba41b167f9b0503f7 --- client/pages/PressKit.tsx | 104 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 104 insertions(+) create mode 100644 client/pages/PressKit.tsx diff --git a/client/pages/PressKit.tsx b/client/pages/PressKit.tsx new file mode 100644 index 00000000..ea8d00bf --- /dev/null +++ b/client/pages/PressKit.tsx @@ -0,0 +1,104 @@ +import Layout from "@/components/Layout"; +import { Badge } from "@/components/ui/badge"; +import { Card, CardContent, CardDescription, CardHeader, CardTitle } from "@/components/ui/card"; + +export default function PressKit() { + const logos = [ + { + label: "Logo (PNG, 512)", + href: + "https://cdn.builder.io/api/v1/image/assets%2Ffc53d607e21d497595ac97e0637001a1%2F3979ec9a8a28471d900a80e94e2c45fe?format=png&width=512", + }, + { + label: "Logo (PNG, 1200)", + href: + "https://cdn.builder.io/api/v1/image/assets%2Ffc53d607e21d497595ac97e0637001a1%2F3979ec9a8a28471d900a80e94e2c45fe?format=png&width=1200", + }, + ]; + + const colors = [ + { name: "AeThex Blue", hex: "#0a0aff" }, + { name: "Neon Blue", hex: "#2BC0FF" }, + { name: "Aethex Accent", hex: "#50C7FF" }, + { name: "Card BG", hex: "#0B0B12" }, + ]; + + const typography = [ + { name: "Inter", usage: "UI / Body" }, + { name: "JetBrains Mono", usage: "Code / Numeric" }, + ]; + + return ( + +
+
+
+ Press Kit +

AeThex Brand Assets

+

Download logos, view colors and typography, and read usage guidelines.

+
+ + + + Logos + Official wordmark and icon + + + {logos.map((l) => ( + + {l.label} + + ))} + + + + + + Colors + Primary palette + + + {colors.map((c) => ( +
+
+
{c.name}
+
{c.hex}
+
+ ))} + + + + + + Typography + Recommended families + + + {typography.map((t) => ( +
+
{t.name}
+
{t.usage}
+
+ ))} +
+
+ + + + Usage Guidelines + Do's and Don'ts + + +
    +
  • Use official logos without modification or distortion.
  • +
  • Maintain clear space around marks; avoid busy backgrounds.
  • +
  • Do not imply partnership or endorsement without written approval.
  • +
  • Link to aethex.biz for official context.
  • +
+
+
+
+
+ + ); +}