SPB Git forge

spb/ai-atlas

Public
41commits 1branches 0releases
4.6 MBsize
maindefault branch
12 days agolast push
HTML 77.2% TypeScript 10.5% Python 9.6% JavaScript 2.5%
922 B · 20 lines tsx
Raw Blame History
1import type { Metadata } from 'next';2import { Container, PageHeader } from '@/components/ui/section';3import { WatchlistView } from '@/components/watchlist/watchlist-view';45export const metadata: Metadata = {6  title: 'Watchlist',7  description: 'Entities you follow on AI Atlas and their latest release, price, deprecation, benchmark, provider and licence events. Stored in your browser — no account.',8  alternates: { canonical: '/watchlist' },9  robots: { index: false, follow: true },10};1112export default function WatchlistPage() {13  return (14    <Container>15      <PageHeader eyebrow="Local · this browser only" title="Watchlist" lede="Follow models, organizations, providers or benchmarks and see their material events in one feed: new versions, price moves, deprecations, benchmark results, provider listings and licence changes. Nothing leaves your browser." />16      <WatchlistView />17    </Container>18  );19}20