Me
Partner Offline
No room joined yet
👤 Who are you?
Focus Timer
25:00
Focus ✦
Session 0 / 4
My Tasks
Your tasks will appear here
My Calendar
March 2026
Select a day
Video Space
📹
Video Call

Paste your Daily.co room URL to embed the call directly here.

💡 Free setup (one-time): Sign up at daily.co → Dashboard → Create room → copy the URL → paste above. Your partner opens the same URL to join. Free tier = 10,000 mins/month, no card needed.

URL saves automatically for next time

Drag · click to edit · ✕ to delete
▶ YouTube
Paste a YouTube URL above and click Load

🔔 Set Reminder

Label
Date & time

📅 Import Google Calendar

Imports upcoming events (next 90 days). Use 🔄 to re-sync later.

Choose Timezone

Notes
Set Reminder

✏️ Edit Task

Task
Deadline (optional)
Remarks / Notes
Who are you?
This is saved on your device only. Your partner picks their own name on their device. "Mine" will always mean you, and "Partner" will mean them.
💙
Person 1
🩷
Person 2

🔗 Connect Supabase — Shared Database

One-time setup (5 minutes, free):
1. Go to supabase.com → New project (free)
2. In your project → SQL Editor → run the SQL below
3. Go to Project Settings → API → copy Project URL and anon public key
4. Both of you use the same URL, key, and Space Code
create table todos ( id text primary key, space_id text not null, text text not null, done boolean default false, imp boolean default false, urg boolean default false, deadline text default '', notes text default '', created_by text default 'me', sort_order int default 0, created_at timestamptz default now() ); create table cal_events ( id text primary key, space_id text not null, date text not null, title text not null, time text default '', source text default 'local', who text default 'me', created_by text default 'me', notes text default '', reminders jsonb default '[]', imported boolean default false, created_at timestamptz default now() ); alter publication supabase_realtime add table todos; alter publication supabase_realtime add table cal_events; alter table todos enable row level security; alter table cal_events enable row level security; create policy "open" on todos for all using (true) with check (true); create policy "open" on cal_events for all using (true) with check (true);
Project URL
Anon public key
Space Code (any word — both of you use the same one)