/** * llmindex.io — platform logo (inline SVG mark + wordmark) * Author: Simon-Pierre Boucher * Contact: contact@spboucher.ai * License: Proprietary — © Simon-Pierre Boucher, all rights reserved */ import type { ReactElement } from 'react'; export function LogoMark({ size = 28 }: { size?: number }): ReactElement { return ( ); } export function Logo(): ReactElement { return ( LLMIndex ); }