HTML 77.2%
TypeScript 10.5%
Python 9.6%
JavaScript 2.5%
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