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%
749 B · 15 lines tsx
Raw Blame History
1import type { Metadata } from "next";2import { PageHeader } from "@/components/ui";3import { Monitors } from "./monitors";45export const metadata: Metadata = { title: "Custom monitors", description: "Watch any public URL with WebSensor's change engine: canonical extraction, semantic diff, noise filtering and evidence, scoped to your browser.", robots: { index: false } };67export default function MonitorsPage() {8  return (9    <>10      <PageHeader compact kicker="Stored in this browser (no account yet)" title="Custom monitors" description="Point WebSensor at a public page. It is fetched, canonicalized and diffed like every registry sensor; meaningful changes become events visible only to this browser." />11      <Monitors />12    </>13  );14}15