-
From Uninspired to Luxurious
-
Relaxed Entertaining Space
-
-
-
-
Secluded Relaxation Space
-
Serene Infinity Pool Retreat
// Exclude chatbot from these specific pages
const excludedPages = [
'/patios-and-pool-decks',
'/outdoor-kitchens',
'/backyard-design',
'/pool-houses',
'/pool-installation-near-you',
'/pool-poolscape-design',
'/pool-renovations'
];
// Normalize path (removes trailing slash if present)
const currentPath = window.location.pathname.replace(/\/$/, '');
// Load ElevenLabs chatbot on all pages EXCEPT excluded ones
if (!excludedPages.includes(currentPath)) {
// Inject ElevenLabs widget element
const widget = document.createElement('elevenlabs-convai');
widget.setAttribute('agent-id', 'agent_8601kg5s28pcfc19sbyyk579twwh');
document.body.appendChild(widget);
// Inject ElevenLabs embed script (only once)
if (!document.querySelector('script[src="https://unpkg.com/@elevenlabs/convai-widget-embed"]')) {
const script = document.createElement('script');
script.src = "https://unpkg.com/@elevenlabs/convai-widget-embed";
script.async = true;
script.type = "text/javascript";
document.body.appendChild(script);
}
}