import React from 'react'; import LegalLayout from '../components/legal/LegalLayout'; import { LEGAL_LAST_UPDATED } from '../constants/legal'; import SEO from '../components/seo/SEO'; const Privacy: React.FC = () => { const toc = [ { label: 'Collect', href: '#collect' }, { label: 'Use', href: '#use' }, { label: 'Location', href: '#location' }, { label: 'Sharing', href: '#sharing' }, { label: 'Retention', href: '#retention' }, { label: 'Choices', href: '#choices' }, { label: 'Security', href: '#security' }, { label: 'Transfers', href: '#transfers' }, { label: 'Children', href: '#children' }, { label: 'Changes', href: '#changes' }, { label: 'Contact', href: '#contact' }, ]; return ( <>

Last updated: {LEGAL_LAST_UPDATED}

WayFairer builds pace-of-play intelligence for modern golf clubs. We design our products to be transparent, privacy-respectful, and useful. This Privacy Policy explains what information we collect, how we use it, and the choices you have.

Information We Collect

How We Use Information

Location and Sensors

During an active round, we may request device signals to infer hole progress and pace. We limit collection to the session window and do not continuously track users off-course. You can control permissions at the device or browser level and can stop a session at any time.

Data Sharing

Retention

We retain information only as long as needed for the purposes described above or as required by law. Aggregated insights may be retained without a time limit as they do not identify individuals.

Your Choices

Security

We implement technical and organizational measures designed to protect information. No system is perfectly secure, but we work to keep your data safe using encryption, access controls, and continuous monitoring.

International Transfers

Information may be processed in countries other than your own. Where applicable, we use appropriate safeguards for cross-border data transfers.

Children

WayFairer is not directed to children under the age of 13 (or as defined by local law). We do not knowingly collect personal information from children.

Changes to this Policy

We may update this Privacy Policy from time to time. We will post changes on this page and update the “Last updated” date. Material changes will be communicated by reasonable means.

Contact Us

Questions? Contact us at privacy@wayfairerlabs.com.

); }; export default Privacy;