import { LegalPage, Section, LegalContact } from "@/components/marketing/legal" import { LEGAL } from "@/lib/legal" export const metadata = { title: "Cookie Policy", description: "How we use cookies and similar technologies, what we deliberately avoid, and how to manage them in your browser.", alternates: { canonical: "/cookie-policy" }, } const COOKIE_ROWS: { name: string; type: string; purpose: string; expires: string }[] = [ { name: "session", type: "Strictly necessary", purpose: "Keeps you signed in and maintains your authenticated session", expires: "On sign-out or after inactivity", }, { name: "preferences (localStorage)", type: "Preference", purpose: "Stores interface preferences such as layout and theme in your browser", expires: "Persistent until cleared", }, { name: "__stripe_*", type: "Strictly necessary (Stripe)", purpose: "Set by Stripe to prevent payment fraud during checkout", expires: "Session or up to one year", }, ] export default function Page() { return (

Cookies are small text files that a website stores on your device through your browser. Similar technologies, such as browser localStorage, allow a site to store data locally in a comparable way. These technologies help a website keep you signed in, remember your preferences, and operate securely. This policy describes how{" "} {LEGAL.entity} uses them within {LEGAL.service} (the{" "} Service).

We use only the following limited set of technologies:

We do not use advertising, retargeting, or cross-site tracking cookies, and we do not use third-party analytics cookies. We do not build advertising profiles or share cookie data with advertising networks.

Most browsers allow you to view, block, or delete cookies through their settings. Because our authentication and session cookies are strictly necessary, blocking them will prevent you from signing in to and using the Service. You can adjust your browser settings at any time to control non-essential storage.

Session cookies are temporary and are cleared when your session ends, while{" "} persistent storage remains on your device until it expires or you remove it. Authentication sessions expire after a period of inactivity, after which you will be asked to sign in again.

We may update this Cookie Policy as the Service evolves. When we make material changes, we will update the date shown above. Please review this page periodically to stay informed.

Cookie summary

{COOKIE_ROWS.map((row, i, arr) => (
{row.name} {row.type} {row.purpose} {row.expires}
))}
) }