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.
); }