import { cn } from '@/lib/cn'; import { MarkArt, MARK_TOKENS } from './mark'; /** * The AI Atlas mark (atlas plate + "A" constellation + timeline "now" node). `plate` (default) follows the theme through the * `--brand-*` tokens; `mono` draws the graph alone in `currentColor` for footers and monochrome contexts. */ export function LogoMark({ size = 24, className, variant = 'plate', title }: { size?: number; className?: string; variant?: 'plate' | 'mono'; title?: string }) { const colors = variant === 'plate' ? MARK_TOKENS : { plate: 'transparent', ink: 'currentColor', grid: 'currentColor', accent: 'var(--accent)' }; return ( {title && {title}} {variant === 'mono' ? ( ) : ( )} ); } /** Lockup: mark + "AI Atlas" (Geist, "AI" heavy, "Atlas" medium). */ export function Wordmark({ className, markSize = 22, textClassName }: { className?: string; markSize?: number; textClassName?: string }) { return ( AI Atlas ); }