import Layout from "@/components/Layout"; import { Badge } from "@/components/ui/badge"; import { Button } from "@/components/ui/button"; import { Card, CardContent, CardDescription, CardHeader, CardTitle, } from "@/components/ui/card"; import { Download, ExternalLink } from "lucide-react"; export default function PressKit() { const logos = [ { label: "AeThex Logo (Primary)", description: "Main wordmark for light/dark backgrounds", href: "https://cdn.builder.io/api/v1/image/assets%2Ffc53d607e21d497595ac97e0637001a1%2F3979ec9a8a28471d900a80e94e2c45fe?format=png&width=512", preview: "https://cdn.builder.io/api/v1/image/assets%2Ffc53d607e21d497595ac97e0637001a1%2F3979ec9a8a28471d900a80e94e2c45fe?format=webp&width=200", }, { label: "AeThex Logo (High Res)", description: "1200px wide for print and large displays", href: "https://cdn.builder.io/api/v1/image/assets%2Ffc53d607e21d497595ac97e0637001a1%2F3979ec9a8a28471d900a80e94e2c45fe?format=png&width=1200", preview: "https://cdn.builder.io/api/v1/image/assets%2Ffc53d607e21d497595ac97e0637001a1%2F3979ec9a8a28471d900a80e94e2c45fe?format=webp&width=200", }, ]; const armLogos = [ { label: "Staff", color: "#7c3aed", href: "https://cdn.builder.io/api/v1/image/assets%2Ffc53d607e21d497595ac97e0637001a1%2Fc0414efd7af54ef4b821a05d469150d0?format=png&width=512", preview: "https://cdn.builder.io/api/v1/image/assets%2Ffc53d607e21d497595ac97e0637001a1%2Fc0414efd7af54ef4b821a05d469150d0?format=webp&width=80", }, { label: "Labs", color: "#FBBF24", href: "https://cdn.builder.io/api/v1/image/assets%2Ffc53d607e21d497595ac97e0637001a1%2Fd93f7113d34347469e74421c3a3412e5?format=png&width=512", preview: "https://cdn.builder.io/api/v1/image/assets%2Ffc53d607e21d497595ac97e0637001a1%2Fd93f7113d34347469e74421c3a3412e5?format=webp&width=80", }, { label: "GameForge", color: "#22C55E", href: "https://cdn.builder.io/api/v1/image/assets%2Ffc53d607e21d497595ac97e0637001a1%2Fcd3534c1caa0497abfd44224040c6059?format=png&width=512", preview: "https://cdn.builder.io/api/v1/image/assets%2Ffc53d607e21d497595ac97e0637001a1%2Fcd3534c1caa0497abfd44224040c6059?format=webp&width=80", }, { label: "Corp", color: "#3B82F6", href: "https://cdn.builder.io/api/v1/image/assets%2Ffc53d607e21d497595ac97e0637001a1%2F3772073d5b4b49e688ed02480f4cae43?format=png&width=512", preview: "https://cdn.builder.io/api/v1/image/assets%2Ffc53d607e21d497595ac97e0637001a1%2F3772073d5b4b49e688ed02480f4cae43?format=webp&width=80", }, { label: "Foundation", color: "#EF4444", href: "https://cdn.builder.io/api/v1/image/assets%2Ffc53d607e21d497595ac97e0637001a1%2Fc02cb1bf5056479bbb3ea4bd91f0d472?format=png&width=512", preview: "https://cdn.builder.io/api/v1/image/assets%2Ffc53d607e21d497595ac97e0637001a1%2Fc02cb1bf5056479bbb3ea4bd91f0d472?format=webp&width=80", }, { label: "Dev-Link", color: "#06B6D4", href: "https://cdn.builder.io/api/v1/image/assets%2Ffc53d607e21d497595ac97e0637001a1%2F9a96b43cbd7b49bb9d5434580319c793?format=png&width=512", preview: "https://cdn.builder.io/api/v1/image/assets%2Ffc53d607e21d497595ac97e0637001a1%2F9a96b43cbd7b49bb9d5434580319c793?format=webp&width=80", }, { label: "Nexus", color: "#A855F7", href: "https://cdn.builder.io/api/v1/image/assets%2Ffc53d607e21d497595ac97e0637001a1%2F6df123b87a144b1fb99894d94198d97b?format=png&width=512", preview: "https://cdn.builder.io/api/v1/image/assets%2Ffc53d607e21d497595ac97e0637001a1%2F6df123b87a144b1fb99894d94198d97b?format=webp&width=80", }, ]; const primaryColors = [ { name: "AeThex Purple", hex: "#7C3AED", hsl: "250 100% 60%", usage: "Primary brand color" }, { name: "Neon Blue", hex: "#60A5FA", hsl: "210 100% 70%", usage: "Accent highlights" }, { name: "Neon Purple", hex: "#C084FC", hsl: "280 100% 70%", usage: "Gradient accents" }, ]; const armColors = [ { name: "Staff Purple", hex: "#7C3AED", usage: "Staff arm" }, { name: "Labs Yellow", hex: "#FBBF24", usage: "Labs arm" }, { name: "GameForge Green", hex: "#22C55E", usage: "GameForge arm" }, { name: "Corp Blue", hex: "#3B82F6", usage: "Corp arm" }, { name: "Foundation Red", hex: "#EF4444", usage: "Foundation arm" }, { name: "Dev-Link Cyan", hex: "#06B6D4", usage: "Dev-Link arm" }, { name: "Nexus Purple", hex: "#A855F7", usage: "Nexus arm" }, ]; const backgrounds = [ { name: "Deep Space", hex: "#030712", usage: "Primary background" }, { name: "Card Dark", hex: "#0B0B12", usage: "Card backgrounds" }, { name: "Border", hex: "#1E293B", usage: "Borders & dividers" }, { name: "Muted Text", hex: "#94A3B8", usage: "Secondary text" }, ]; const typography = [ { name: "Inter", usage: "UI / Body / Headlines", weight: "400-700", style: "Clean, modern sans-serif" }, { name: "JetBrains Mono", usage: "Code / Numeric / Technical", weight: "400-600", style: "Monospace for code" }, ]; const companyInfo = { name: "AeThex", tagline: "Build the Future", description: "AeThex is an advanced development platform and community for builders. We provide tools, mentorship, and resources for creators to bring their ideas to life through Labs, GameForge, Corp, Foundation, and Dev-Link.", founded: "2024", website: "https://aethex.dev", domains: [ { domain: "aethex.dev", purpose: "Main platform" }, { domain: "aethex.foundation", purpose: "Identity & passports" }, { domain: "*.aethex.me", purpose: "Creator passports" }, { domain: "*.aethex.space", purpose: "Project passports" }, ], }; return (
Press Kit

AeThex Brand Assets

Official logos, colors, typography, and usage guidelines for press and media.

About AeThex Company overview for press use

{companyInfo.name}

{companyInfo.description}

Tagline: {companyInfo.tagline}

Founded: {companyInfo.founded}

Official Domains

{companyInfo.domains.map((d) => (
{d.domain} - {d.purpose}
))}
Primary Logo Official AeThex wordmark
{logos.map((l) => (
{l.label}
{l.label}
{l.description}
))}
Arm Logos Individual logos for each AeThex arm
{armLogos.map((arm) => (
{arm.label}
{arm.label}
))}
Primary Colors Core brand palette
{primaryColors.map((c) => (
{c.name}
{c.usage}
{c.hex} {c.hsl}
))}
Arm Colors Color palette for each arm division
{armColors.map((c) => (
{c.name}
{c.hex}
))}
Background Colors Dark theme palette
{backgrounds.map((c) => (
{c.name}
{c.usage}
{c.hex}
))}
Typography Recommended font families
{typography.map((t) => (
{t.name}
{t.style}

Usage: {t.usage}

Weights: {t.weight}

))}
Usage Guidelines Do's and Don'ts for brand usage

Do's

  • Use official logos without modification or distortion
  • Maintain clear space around marks (minimum 20% of logo height)
  • Use on dark backgrounds for optimal visibility
  • Link to aethex.dev for official context
  • Use arm-specific colors when referencing individual divisions

Don'ts

  • Do not stretch, rotate, or alter the logo proportions
  • Do not use on busy or conflicting backgrounds
  • Do not imply partnership or endorsement without written approval
  • Do not use outdated logos or assets
  • Do not recreate the logo with different fonts or colors
Press Contact For media inquiries
); }