import type { Metadata } from 'next'; import type { CSSProperties } from 'react'; export const metadata: Metadata = { title: 'Cookie Policy — Waggle', description: 'Cookie policy for Waggle OS by Egzakta Group d.o.o.', robots: { index: false, follow: false }, }; export default function CookiesPage() { return (

Cookie Policy

Effective date: July 8, 2026 · Last updated: July 8, 2026

This Cookie Policy explains how Waggle OS uses cookies and similar technologies on its web properties (the marketing site at waggle-os.ai and any in-product web views).

1. What cookies are

Cookies are small text files stored by your browser when you visit a website. They allow the site to remember information about your visit (e.g., your login state). Similar technologies include local storage, session storage, and pixels.

2. Cookies we use

Strictly necessary

These cookies are required for the Service to function and cannot be disabled.

Analytics (opt-in)

These cookies are loaded only if you opt in via Settings → Privacy → “Allow anonymous product analytics.” Default is opt-out.

3. No advertising or social-media tracking

We do not use third-party advertising networks, social-media pixels (Meta, TikTok, X), or cross-site tracking. We do not sell or share data with advertisers.

4. Managing cookies

You can clear cookies through your browser settings. For granular control of the analytics cookie, use Settings → Privacy in the Waggle product.

5. Changes to this policy

We may update this Cookie Policy. Material changes will be announced via the product and email.

6. Contact

Email: privacy@egzakta.com

); } const h1Style: CSSProperties = { fontSize: 'clamp(28px, 4vw, 36px)', fontWeight: 700, marginBottom: 24, color: 'var(--hive-50, #f6f1e4)', }; const h2Style: CSSProperties = { fontSize: 'clamp(18px, 2.4vw, 22px)', fontWeight: 600, marginTop: 32, marginBottom: 12, color: 'var(--hive-50, #f6f1e4)', }; const h3Style: CSSProperties = { fontSize: 16, fontWeight: 600, marginTop: 16, marginBottom: 8, color: 'var(--hive-100, #d8cfba)', }; const metaLineStyle: CSSProperties = { fontSize: 13, color: 'var(--hive-300, #948a73)', marginBottom: 24, }; const paragraphStyle: CSSProperties = { fontSize: 15, lineHeight: 1.7, color: 'var(--hive-200, #d8cfba)', marginBottom: 16, }; const listStyle: CSSProperties = { paddingLeft: 24, marginBottom: 16, color: 'var(--hive-200, #d8cfba)', }; const listItemStyle: CSSProperties = { fontSize: 15, lineHeight: 1.7, marginBottom: 8, };