import type { Metadata } from 'next'; import { Container, PageHeader } from '@/components/ui/section'; import { WatchlistView } from '@/components/watchlist/watchlist-view'; export const metadata: Metadata = { title: 'Watchlist', description: 'Entities you follow on AI Atlas and their latest release, price, deprecation, benchmark, provider and licence events. Stored in your browser — no account.', alternates: { canonical: '/watchlist' }, robots: { index: false, follow: true }, }; export default function WatchlistPage() { return ( ); }