class HeroSection extends HTMLElement { connectedCallback() { this.attachShadow({ mode: 'open' }); this.shadowRoot.innerHTML = `

Master the Sea with the UK's #1 RYA Training Centre – Since 1998

5★ Rated | Immaculate Fleet | Expert Instructors | Book Instantly

Book Your Course
`; // Initialize feather icons import('https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js').then(() => { feather.replace({ icons: this.shadowRoot.querySelectorAll('[data-feather]') }); }); } } customElements.define('hero-section', HeroSection);