Copied to clipboard!

Customer & Waitlist Overview

Live database records from Supabase for all subscribers and platform users.

Waitlist Subscribers
Early access customers
Today's Signups
Last 24 hours
Unique Domains
Audience variety
Registered Profiles
Full platform accounts
# Email Address Source Signup Timestamp Time Ago

Loading subscribers from database…

Top Email Providers

No data available.

Growth Summary

Total Early Leads: 0

Recent 7 Days: 0

Average per Day: 0

Username Display Name Bio Location Joined Date
👥

Loading registered profiles…

Database Setup Complete & Active

Your Supabase database table public.waitlist is verified, active, and receiving live submissions.

Connected Project: https://hojdaxfvyjuwhnkdjvgg.supabase.co

Target Table: public.waitlist

Row Level Security: Enabled (Public inserts allowed, Admin reads allowed)

View Installed SQL Schema Reference
create table if not exists public.waitlist (
  id uuid primary key default gen_random_uuid(),
  email text not null unique check (email ~* '^[A-Za-z0-9._%+-]+@[A-Za-z0-9.-]+\.[A-Za-z]{2,}$'),
  source text not null default 'coming_soon_page',
  created_at timestamptz not null default now()
);

alter table public.waitlist enable row level security;
create policy "Allow public waitlist insert" on public.waitlist for insert to anon, authenticated with check (true);
create policy "Allow dashboard select" on public.waitlist for select using (true);