SPB Git forge

spb/rareindex

Public
54commits 1branches 0releases
7.1 MBsize
maindefault branch
10 days agolast push
TypeScript 61.9% HTML 37.2% SQL 0.7%

Site: contact@spboucher.ai, author (Simon-Pierre Boucher) and hosting on MacLustr (www.maclustr.io) in footer and About

Co-Authored-By: Claude Fable 5.1 <noreply@anthropic.com>
Simon-Pierre Boucher committed 13 days ago (Sep 11, 2026) parent 5305415

2 changed files +21 −1

modified apps/web/src/app/about/page.tsx +7 −1
@@ -44,7 +44,13 @@ export default function AboutPage() {
44 44
45 45 <h2 className="mt-6 text-base font-semibold">Contact</h2>
46 46 <p className="mt-2 text-[14px] leading-relaxed text-muted">
47 − Data corrections and source requests: <a href="mailto:data@rareindex.io" className="underline">data@rareindex.io</a>. API and partnerships: <a href="mailto:hello@rareindex.io" className="underline">hello@rareindex.io</a>. Rights holders who wish a source to be excluded can write to <a href="mailto:legal@rareindex.io" className="underline">legal@rareindex.io</a>.
47 + General contact: <a href="mailto:contact@spboucher.ai" className="underline">contact@spboucher.ai</a>. Data corrections and source requests: <a href="mailto:data@rareindex.io" className="underline">data@rareindex.io</a>. API and partnerships: <a href="mailto:hello@rareindex.io" className="underline">hello@rareindex.io</a>. Rights holders who wish a source to be excluded can write to <a href="mailto:legal@rareindex.io" className="underline">legal@rareindex.io</a>.
48 + </p>
49 +
50 + <h2 className="mt-6 text-base font-semibold">Who builds RareIndex, and where it runs</h2>
51 + <p className="mt-2 text-[14px] leading-relaxed text-muted">
52 + RareIndex is built and operated by <strong className="font-medium text-fg">Simon-Pierre Boucher</strong> (Québec, Canada). The platform — ingestion pipelines, valuation workers, database, API and this site — is hosted on{' '}
53 + <a href="https://www.maclustr.io" target="_blank" rel="noopener noreferrer" className="underline">MacLustr</a> (www.maclustr.io), a distributed Apple-silicon compute cluster operated by the same team, and published through the MacLustr Tunnel gateway.
48 54 </p>
49 55 </Card>
50 56 </div>
modified apps/web/src/components/layout/site-footer.tsx +14 −0
@@ -49,6 +49,20 @@ export function SiteFooter() {
49 49 <Link href="/about" className="hover:text-fg">
50 50 About
51 51 </Link>
52 + <a href="mailto:contact@spboucher.ai" className="hover:text-fg">
53 + contact@spboucher.ai
54 + </a>
55 + </p>
56 + <p className="mt-1 flex flex-wrap items-center gap-x-3 gap-y-1">
57 + <span>Built by Simon-Pierre Boucher</span>
58 + <span aria-hidden>·</span>
59 + <span>
60 + Hosted on{' '}
61 + <a href="https://www.maclustr.io" target="_blank" rel="noopener noreferrer" className="underline hover:text-fg">
62 + MacLustr
63 + </a>{' '}
64 + (www.maclustr.io)
65 + </span>
52 66 </p>
53 67 </div>
54 68 </div>
55 69