SPB Git forge

spb/websensor

Public
33commits 1branches 0releases
3.4 MBsize
maindefault branch
10 days agolast push
TypeScript 55.4% Python 43.2% SQL 1.2%
766 B · 15 lines tsx
Raw Blame History
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