SPB Git

spb/airiskindex Public

The most methodologically rigorous, fully transparent AI job-exposure index.

TypeScript 88% Python 6.1% SQL 2.7% CSS 1.2% JavaScript 0.9% Shell 0.8%
841 B · 20 lines tsx
Raw Blame History
1//  File:    logo.tsx2//  Path:    apps/web/components/logo.tsx3//  Project: AI Risk Index — airiskindex.io4//  Author:  Simon-Pierre Boucher5//  Contact: contact@spboucher.ai6//  Copyright © 2026 Simon-Pierre Boucher. All rights reserved.7//8//  Description: Brand mark — ranked score bars, sharp cut, on the index blue.910export function LogoMark({ size = 22 }: { size?: number }): JSX.Element {11  return (12    <svg width={size} height={size} viewBox="0 0 64 64" aria-hidden="true" className="shrink-0">13      <rect width="64" height="64" rx="12" fill="var(--seq)" />14      <rect x="13" y="14" width="38" height="9" rx="2" fill="#ffffff" />15      <rect x="13" y="28" width="27" height="9" rx="2" fill="#ffffff" opacity="0.82" />16      <rect x="13" y="42" width="16" height="9" rx="2" fill="#ffffff" opacity="0.62" />17    </svg>18  );19}20