SPB Git forge
28commits 1branches 0releases
7.7 MBsize
maindefault branch
10 days agolast push
Python 66.3% TypeScript 22.7% JavaScript 8.6% HTML 1.4% CSS 0.7%
629 B · 15 lines tsx
Raw Blame History
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