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

Selected Projects

Project 1

Digital Platform

Web Development
Project 2

Brand Identity

Graphic Design
Project 3

Mobile App

UI/UX Design
Project 4

Marketing Campaign

Creative Direction
`; } } customElements.define('custom-projects', CustomProjects);