The Aso Ebi platform

Your event.
Your fabric.
Your tailor.

Tailr brings together event coordinators, guests, and tailors in one seamless platform — so every outfit arrives on time, fitted perfectly, and looking stunning.

Group 1
Olive & Sage
Bride & Groom
Group 2
Chocolate Brown
Bridal party · 24 people
Group 3
Gold & Mustard
General guests · 326

How it works

From invite to fitted,
in three steps.

01
Create your event

Set your date, define color groups, upload fabric options, and invite guests with a single shareable link. Automated timelines work backwards from your event date.

02
Guests choose & order

Guests browse fabric options, pick a tailor from the marketplace, submit their measurements, and pay — all in one place. No more chasing people on WhatsApp.

03
Everyone shows up fitted

Tailors receive organized order sheets. Automated reminders keep everyone on track. Outfits ship on time. You show up and celebrate.

Built for Aso Ebi

Every color group,
perfectly coordinated.

Olive & Sage
Gold & Mustard
Chocolate Brown
Emerald Green
Burgundy & Rose
Royal Navy
Deep Plum
Forest Green

Create unlimited color groups per event. Each group gets its own ordering flow, tailor assignments, deadline tracking, and automated reminders.

350+
guests per event
3
user experiences
0
WhatsApp chases needed
1
link to share with guests

Built for everyone

One platform,
three experiences.

HC
Host & coordinator

Plan your entire Aso Ebi from one dashboard. See every guest, every order, every deadline at a glance — no spreadsheets, no group chats.

Real-time guest dashboard
Automated deadline reminders
Color group management
Payment tracking & reporting
TA
Tailor & vendor

Build your profile, showcase your portfolio, and receive organized orders — complete with measurements, style preferences, and fabric details included.

Public tailor profile & portfolio
Organized order sheets
Order status update tools
Automatic payouts via Stripe

Your next event
starts here.

Join the waitlist and be among the first to plan your event on Tailr. Early access launching soon.

No spam. Just Tailr updates.

async function handleWaitlist(e) { e.preventDefault(); const btn = document.getElementById('waitlist-btn'); const feedback = document.getElementById('cta-feedback'); const input = document.getElementById('email-input'); const email = input.value.trim(); if (!email) return; btn.textContent = 'Saving...'; btn.disabled = true; input.disabled = true; try { const res = await fetch('/waitlist.php', { method: 'POST', headers: { 'Content-Type': 'application/json' }, body: JSON.stringify({ email: email, role: 'host' }) }); const data = await res.json(); if (data.success) { btn.textContent = "You're on the list!"; btn.style.background = '#4A5C28'; btn.style.color = '#C8D89A'; feedback.textContent = data.message; feedback.style.color = 'rgba(212,168,85,0.7)'; } else { btn.textContent = 'Try again'; btn.disabled = false; input.disabled = false; feedback.textContent = data.message || 'Something went wrong.'; feedback.style.color = '#E24B4A'; } } catch(err) { btn.textContent = 'Try again'; btn.disabled = false; input.disabled = false; feedback.textContent = 'Connection error. Please try again.'; feedback.style.color = '#E24B4A'; } }