// ============================================================================= // Cookie & Privacy Policy // ============================================================================= // // A plain, honest policy page describing exactly what (very little) is // stored in the visitor's browser. Update the `lastUpdated` field below // whenever the policy changes. // // The wording is deliberately written in first-person plain English rather // than legalese — Novarix is small enough to be transparent and brief. // ============================================================================= import type { Metadata } from "next"; import Link from "next/link"; import { site } from "@/content"; const lastUpdated = "2 May 2026"; export const metadata: Metadata = { title: "Cookie & Privacy Policy", description: "How Novarix Networks uses cookies and browser storage on this website.", }; export default function CookiePolicyPage() { return (
{/* Ambient background, matching the homepage */}
); }