TypeScript 55.4%
Python 43.2%
SQL 1.2%
1import type { Metadata } from "next";2import { PageHeader } from "@/components/ui";3import { Watchlists } from "./watchlists";45export const metadata: Metadata = { title: "Watchlists", description: "Follow organizations, sources, keywords, categories, URLs, event types, countries and groups. Live updates via WebSocket.", robots: { index: false } };67export default function WatchlistsPage() {8 return (9 <>10 <PageHeader compact kicker="Stored in this browser (no account yet)" title="Watchlists" description="Follow entities, sources, keywords, categories, exact URLs, event types, countries or groups. Matching events stream in live over the watchlist channel; turn a watchlist into deliveries with an alert rule." />11 <Watchlists />12 </>13 );14}15