// File: page.tsx // Path: apps/web/app/privacy/page.tsx // Project: AI Risk Index — airiskindex.io // Author: Simon-Pierre Boucher // Contact: contact@spboucher.ai // Copyright © 2026 Simon-Pierre Boucher. All rights reserved. // // Description: Privacy Policy. export const metadata = { title: "Privacy Policy — AI Risk Index", }; function Section({ title, children }: { title: string; children: React.ReactNode }): JSX.Element { return (

{title}

{children}
); } export default function PrivacyPage(): JSX.Element { return (

Privacy Policy

Effective date: August 5, 2026

This policy describes how the AI Risk Index (www.airiskindex.io), operated by{" "} Simon-Pierre Boucher, handles personal information. The short version: the site works without an account, we collect almost nothing, we track nobody, and we sell nothing.

We do not use advertising trackers or third-party analytics, we set no cookies for browsing, and we do not profile visitors. Occupation pages you view are not linked to you.

We do not sell, rent or share personal information with third parties for their own purposes. We do not use your data to train models. Occupation scores are computed from public occupational data — never from visitor data.

Traffic to the site transits through our tunnel/edge provider (ngrok) to our servers; their systems process connection metadata as any network carrier does. No visitor data is sent to AI model providers — model APIs are used only to rate public occupational task statements.

Under Québec's Act respecting the protection of personal information in the private sector (Law 25), the GDPR where it applies, and similar laws, you may request access to, correction of, or deletion of personal information we hold about you (in practice: log entries, an API key record, or email correspondence). Write to{" "} contact@spboucher.ai {" "} and we will respond within 30 days.

Data is processed on servers under our control (Canada) and protected by access controls, key hashing and encrypted transport (HTTPS). No system is perfectly secure; we keep the collected surface deliberately minimal so there is little to lose.

Material changes to this policy are indicated by the effective date above. The person responsible for the protection of personal information is Simon-Pierre Boucher —{" "} contact@spboucher.ai .

); }