Every comment the team leaves across the prototype, in one place. Resolved items feed the next review pass; the change log records what shipped.
?feedback=1 on the end, for example …/casino.html?feedback=1. A Feedback button appears bottom-right. (One link turns it on for your browser; normal visitors never see it.)https://cosmic-crostata-8126fd.netlify.app/index.html?feedback=1fb-config.js and run this once in the Supabase SQL editor:
create table feedback ( id uuid primary key default gen_random_uuid(), created_at timestamptz default now(), page text not null, parent_id uuid references feedback(id), author text not null, body text not null, status text not null default 'open', -- open | planned | resolved | wontfix kind text default 'comment', anchor text, selector text, resolved_at timestamptz, changelog_id text ); alter table feedback enable row level security; create policy team_all on feedback for all to anon using (true) with check (true);