spb/search-box Public
Agentic web research engine — hypotheses, verbatim evidence, contradictions, sourced answers streamed live. Claude Opus 5 + Firecrawl + PostgreSQL.
TypeScript 76.9%
CSS 18.7%
SQL 2.1%
JavaScript 1.8%
Shell 0.5%
1/**2 * Search-box.ai3 * Author: Simon-Pierre Boucher4 * Contact: contact@spboucher.ai5 * File: apps/web/components/Logo.tsx6 * Description: App mark as a React component (same drawing as the favicon).7 */89export function Logo({ size = 26 }: { size?: number }) {10 return (11 <svg width={size} height={size} viewBox="0 0 64 64" aria-hidden>12 <path13 d="M44 12H20q-9 0-9 9v22q0 9 9 9h24q9 0 9-9V28"14 fill="none"15 stroke="currentColor"16 strokeWidth="5.5"17 strokeLinecap="round"18 />19 <path20 d="M38 32c4-8 9-13 16-19"21 fill="none"22 stroke="var(--accent)"23 strokeWidth="5.5"24 strokeLinecap="round"25 />26 <path27 d="M46 21c4-1 7-1 11 1"28 fill="none"29 stroke="var(--accent)"30 strokeWidth="4.5"31 strokeLinecap="round"32 />33 <circle cx="54" cy="13" r="4" fill="var(--accent)" />34 <circle cx="57" cy="22" r="3" fill="var(--accent)" />35 <circle cx="38" cy="32" r="3" fill="currentColor" />36 </svg>37 );38}39