spb/company-atlas
Public
Python 66.3%
TypeScript 22.7%
JavaScript 8.6%
HTML 1.4%
CSS 0.7%
1import type { Metadata } from 'next';2import { WatchlistClient } from '@/components/company/watchlist-client';3import { Container, PageHeader } from '@/components/ui/section';45export const metadata: Metadata = { title: 'Watchlist', robots: { index: false } };67export default function WatchlistPage() {8 return (9 <Container wide>10 <PageHeader eyebrow="Watchlist" title="Companies you follow" lede="Watched companies, their latest structured events and your alert rules. Public browsing needs no account; the watchlist is tied to a token generated by this browser." />11 <WatchlistClient />12 </Container>13 );14}15