ОБЩИЙ СЧЁТЧИК

Нажми — добавь свой голос

Каждое нажатие попадает в общую базу. Посмотрим, сколько нас?

Всего нажатий
Подключаемся к базе…
01 Нажми большую кнопку
02 Счёт обновится для всех
Нужна настройка базы

Создай в Supabase таблицу button_clicks и разреши анонимные добавления:

create table button_clicks (id bigint generated by default as identity primary key, created_at timestamptz default now());
alter table button_clicks enable row level security;
create policy "public insert" on button_clicks for insert to anon with check (true);
create policy "public read" on button_clicks for select to anon using (true);