Join The Strimy Waitlist

Be among the first to experience Strimy, a new livestreaming platform for African creators and audiences.

User
User
User

~ 500+ people already joined

23days|11hours|0minutes|13seconds
23days|11hours|0minutes|13seconds
// Replace with your deployed web domain const WAITLIST_API_URL = "https://strimy.app/api/waitlist"; export async function submitWaitlistEmail(email) { const cleanEmail = String(email || "").trim().toLowerCase(); if (!cleanEmail) throw new Error("Email is required."); const emailRegex = /^[^\s@]+@[^\s@]+\.[^\s@]+$/; if (!emailRegex.test(cleanEmail)) { throw new Error("Please enter a valid email address."); } const res = await fetch(WAITLIST_API_URL, { method: "POST", headers: { "Content-Type": "application/json", }, body: JSON.stringify({ email: cleanEmail, source: "framer", }), }); const data = await res.json().catch(() => ({})); if (!res.ok) { throw new Error(data?.error || "Failed to join waitlist."); } return data; }