See our work on Instagram
📞 +233 593040657
tailexclassic@gmail.com
📷 @tailexclassic
Book an Appointment
Select a service and we will confirm your appointment shortly
ServiceYour detailsConfirm
What would you like to book?
// ── Apply brand config to page ──────────────────────────── document.addEventListener('DOMContentLoaded', function() { var c = APP_CONFIG; var set = function(id, val) { var el=document.getElementById(id); if(el) el.textContent=val; }; var setHTML = function(id, val) { var el=document.getElementById(id); if(el) el.innerHTML=val; }; var setAttr = function(id, attr, val) { var el=document.getElementById(id); if(el) el.setAttribute(attr,val); }; set('app-name', c.name); set('app-tagline', c.tagline); set('success-name', c.name); setHTML('footer-text', '© ' + new Date().getFullYear() + ' ' + c.name + '  ·  ' + c.footerText + '  ·  ' + c.email + '  ·  ' + c.phone); // Contact strip var csPhone = document.getElementById('cs-phone'); if (csPhone) { csPhone.textContent = c.phone; csPhone.href = 'tel:' + c.phone; } var csEmail = document.getElementById('cs-email'); if (csEmail) { csEmail.textContent = c.email; csEmail.href = 'mailto:' + c.email; } var csIg = document.getElementById('cs-ig'); if (csIg) { csIg.textContent = '@' + c.instagram; csIg.href = c.instagramURL; } // Instagram links var igLink = document.getElementById('ig-link'); if (igLink) igLink.href = c.instagramURL; var socialIg = document.getElementById('social-ig'); if (socialIg) socialIg.href = c.instagramURL; // WhatsApp link var socialWa = document.getElementById('social-wa'); if (socialWa) socialWa.href = c.whatsappURL; // Page title document.title = 'Book an Appointment — ' + c.name; });