|
| 1 | +import type { Metadata } from 'next'; |
| 2 | + |
| 3 | +import { Card } from '@/components/ui/card'; |
| 4 | +import { SITE_URL } from '@semianalysisai/inferencex-constants'; |
| 5 | + |
| 6 | +const REGIONAL_ACKNOWLEDGEMENTS = [ |
| 7 | + { |
| 8 | + region: 'San Jose', |
| 9 | + peoples: 'Muwekma Ohlone Tribe', |
| 10 | + acknowledgement: |
| 11 | + 'Our San Jose-area benchmark infrastructure operates on the unceded ancestral homelands of the Muwekma Ohlone Tribe of the San Francisco Bay Area.', |
| 12 | + }, |
| 13 | + { |
| 14 | + region: 'Los Angeles', |
| 15 | + peoples: 'Tongva, Tataviam, Serrano, Kizh, and Chumash Peoples', |
| 16 | + acknowledgement: |
| 17 | + 'Our Los Angeles-area benchmark infrastructure operates on land originally and still inhabited and cared for by the Tongva, Tataviam, Serrano, Kizh, and Chumash Peoples.', |
| 18 | + }, |
| 19 | + { |
| 20 | + region: 'Chicago', |
| 21 | + peoples: |
| 22 | + 'Council of the Three Fires, Illinois Confederacy, Miami, Ho-Chunk, Menominee, Fox, and Sac Peoples', |
| 23 | + acknowledgement: |
| 24 | + 'Our Chicago-area benchmark infrastructure operates on land stewarded by the Council of the Three Fires (Ojibwe, Odawa, and Potawatomi Nations), the Illinois Confederacy, and many other Native Nations including the Miami, Ho-Chunk, Menominee, Fox, and Sac Peoples.', |
| 25 | + }, |
| 26 | +]; |
| 27 | + |
| 28 | +export const metadata: Metadata = { |
| 29 | + title: 'Land Acknowledgement', |
| 30 | + description: |
| 31 | + 'A land acknowledgement for the Indigenous peoples and homelands connected to InferenceX US benchmark clusters in San Jose, Los Angeles, and Chicago.', |
| 32 | + alternates: { canonical: `${SITE_URL}/land-acknowledgement` }, |
| 33 | + openGraph: { |
| 34 | + title: 'Land Acknowledgement | InferenceX', |
| 35 | + description: |
| 36 | + 'A land acknowledgement for the Indigenous peoples and homelands connected to InferenceX US benchmark clusters in San Jose, Los Angeles, and Chicago.', |
| 37 | + url: `${SITE_URL}/land-acknowledgement`, |
| 38 | + }, |
| 39 | + twitter: { |
| 40 | + title: 'Land Acknowledgement | InferenceX', |
| 41 | + description: |
| 42 | + 'A land acknowledgement for the Indigenous peoples and homelands connected to InferenceX US benchmark clusters in San Jose, Los Angeles, and Chicago.', |
| 43 | + }, |
| 44 | +}; |
| 45 | + |
| 46 | +export default function LandAcknowledgementPage() { |
| 47 | + return ( |
| 48 | + <main data-testid="land-acknowledgement-page" className="relative"> |
| 49 | + <div className="container mx-auto px-4 lg:px-8 pb-8"> |
| 50 | + <Card className="gap-10"> |
| 51 | + <header className="max-w-3xl"> |
| 52 | + <p className="mb-3 text-xs font-semibold uppercase tracking-[0.32em] text-brand"> |
| 53 | + Land Acknowledgement |
| 54 | + </p> |
| 55 | + <h1 className="text-4xl font-semibold tracking-[-0.04em] text-foreground md:text-5xl"> |
| 56 | + We recognize the Indigenous homelands connected to our US infrastructure. |
| 57 | + </h1> |
| 58 | + <p className="mt-4 text-sm leading-6 text-muted-foreground md:text-base"> |
| 59 | + InferenceX benchmark clusters serve traffic from several regions. This page focuses on |
| 60 | + our US sites in San Jose, Los Angeles, and Chicago, and acknowledges the Indigenous |
| 61 | + peoples who have stewarded these lands across generations and continue to do so today. |
| 62 | + </p> |
| 63 | + </header> |
| 64 | + |
| 65 | + <section |
| 66 | + data-testid="land-acknowledgement-regions" |
| 67 | + className="grid gap-4 lg:grid-cols-3" |
| 68 | + aria-label="Regional land acknowledgements" |
| 69 | + > |
| 70 | + {REGIONAL_ACKNOWLEDGEMENTS.map((entry) => ( |
| 71 | + <article |
| 72 | + key={entry.region} |
| 73 | + data-testid={`land-acknowledgement-${entry.region |
| 74 | + .toLowerCase() |
| 75 | + .replaceAll(' ', '-')}`} |
| 76 | + className="rounded-2xl border border-border/40 bg-background/20 p-5" |
| 77 | + > |
| 78 | + <p className="text-xs font-semibold uppercase tracking-[0.28em] text-muted-foreground"> |
| 79 | + {entry.region} |
| 80 | + </p> |
| 81 | + <h2 className="mt-3 text-xl font-semibold tracking-[-0.04em] text-foreground"> |
| 82 | + {entry.peoples} |
| 83 | + </h2> |
| 84 | + <p className="mt-4 text-sm leading-6 text-muted-foreground"> |
| 85 | + {entry.acknowledgement} |
| 86 | + </p> |
| 87 | + </article> |
| 88 | + ))} |
| 89 | + </section> |
| 90 | + |
| 91 | + <p className="max-w-3xl text-sm leading-6 text-muted-foreground"> |
| 92 | + Acknowledgement is only a starting point. We share this statement with respect for |
| 93 | + Native sovereignty, history, and ongoing community presence, and we welcome corrections |
| 94 | + if our wording should be improved. |
| 95 | + </p> |
| 96 | + </Card> |
| 97 | + </div> |
| 98 | + </main> |
| 99 | + ); |
| 100 | +} |
0 commit comments