ROUTE: dash.bayinlabs.bond/* (Merchant Control Panel)
DB

Merchant Console

dash.bayinlabs.bond
Active Tenants
3 Stores
Wildcard routing ready
Domain Health
100% Verified
*.bayinlabs.bond
SSL Provisioning
Auto Wildcard
Zero manual cert config
Edge Rewrite Speed
~12 ms
Next.js Middleware

Managed Tenant Storefronts

Every tenant listed below is automatically served via wildcard subdomain matching.

Store / BrandAssigned SubdomainNext.js Internal RouteStatusActions
Sneaker Lab Yangon
Footwear & Fashion
sneakers.bayinlabs.bond/store/sneakersActive & LiveView Store
Mogok Roast & Co.
Specialty Coffee & Brews
coffee.bayinlabs.bond/store/coffeeActive & LiveView Store
Bayin Tech Minimalist
Electronics & Workspaces
techgear.bayinlabs.bond/store/techgearActive & LiveView Store

How dash.bayinlabs.bond is isolated from Storefronts

Next.js middleware.ts checks the req.headers.get('host'). Because "dash" is a reserved platform subdomain, requests to dash.bayinlabs.bond bypass the tenant store resolver and are cleanly rewritten directly to /dash/*.

// In middleware.ts:
if (host === 'dash.bayinlabs.bond') {
  return NextResponse.rewrite(new URL(`/dash${url.pathname}`, req.url));
}