import type { Metadata } from "next"; import { PageHeader } from "@/components/ui"; import { Watchlists } from "./watchlists"; export const metadata: Metadata = { title: "Watchlists", description: "Follow organizations, sources, keywords, categories, URLs, event types, countries and groups. Live updates via WebSocket.", robots: { index: false } }; export default function WatchlistsPage() { return ( <> ); }