import type { CSSProperties } from 'react'; export const BRAND_NAME = 'Nudentic'; type BrandWordmarkProps = { className?: string; style?: CSSProperties; decorative?: boolean; }; /** Official wordmark from `src/assets/brand/wordmark.svg`. Re-run `scripts/build-brand-components.mjs` after editing the SVG. */ export function BrandWordmark({ className, style, decorative }: BrandWordmarkProps) { return ( ); }