TypeScript 55.4%
Python 43.2%
SQL 1.2%
1import type { Metadata } from "next";2import { PageHeader } from "@/components/ui";3import { Bookmarks } from "./bookmarks";45export const metadata: Metadata = { title: "Saved events", description: "Events you bookmarked in this browser, plus your saved live-feed views.", robots: { index: false } };67export default function BookmarksPage() {8 return (9 <>10 <PageHeader compact kicker="Stored in this browser (no account yet)" title="Saved" description="Bookmarked events and saved live-feed views. Everything is scoped to this browser's anonymous owner token." />11 <Bookmarks />12 </>13 );14}15