← Back to jawn.games

Privacy Policy

Last updated: March 6, 2026

Overview

jawn.games is a browser gaming site. We keep things simple and respect your privacy. We don't sell your data.

What we collect

Without an account: your game progress is stored locally in your browser. We may use basic analytics (like page views) to understand how the site is used.

With an account: when you sign in with Google, we receive your email address and profile name. We also store game progress, scores, and preferences associated with your account.

How we use it

Cookies

We use cookies on the .jawn.games domain for authentication. We may also use cookies for analytics or site functionality in the future.

Third-party services

We use Supabase for authentication and data storage, and Cloudflare for hosting. These services may process data on our behalf in accordance with their own privacy policies.

Data retention

We keep your data for as long as your account is active. If you'd like your account deleted, contact us and we'll handle it.

Children

jawn.games is not directed at children under 13. If you believe a child has created an account, please contact us.

Changes

We may update this policy from time to time. The date at the top reflects the latest revision.

Contact

Questions? Reach out at me@jawn.games.

create table public.game_saves ( user_id uuid references auth.users(id) on delete cascade, game text not null, data jsonb not null default '{}', updated_at timestamptz default now(), primary key (user_id, game) ); alter table public.game_saves enable row level security; create policy "Users can read own saves" on public.game_saves for select using (auth.uid() = user_id); create policy "Users can upsert own saves" on public.game_saves for insert with check (auth.uid() = user_id); create policy "Users can update own saves" on public.game_saves for update using (auth.uid() = user_id);