File size: 3,202 Bytes
87ce440
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
class CustomNavbar extends HTMLElement {
    connectedCallback() {
        this.attachShadow({ mode: 'open' });
        this.shadowRoot.innerHTML = `
            <style>
                .nav-link {
                    position: relative;
                }
                .nav-link:after {
                    content: '';
                    position: absolute;
                    width: 0;
                    height: 2px;
                    bottom: -2px;
                    left: 0;
                    background-color: #0d9488;
                    transition: width 0.3s ease;
                }
                .nav-link:hover:after {
                    width: 100%;
                }
                #mobile-menu {
                    transition: all 0.3s ease;
                }
            </style>
            <nav class="fixed w-full bg-white shadow-sm z-50">
                <div class="container mx-auto px-6 py-4">
                    <div class="flex justify-between items-center">
                        <!-- Logo -->
                        <a href="/" class="flex items-center">
                            <i data-feather="feather" class="text-teal-600 w-8 h-8 mr-2"></i>
                            <span class="text-xl font-bold text-teal-800">Holistic Glow</span>
                        </a>
                        
                        <!-- Desktop Menu -->
                        <div class="hidden md:flex space-x-8">
                            <a href="/" class="nav-link text-gray-700 hover:text-teal-600">Home</a>
                            <a href="#services" class="nav-link text-gray-700 hover:text-teal-600">Services</a>
                            <a href="#about" class="nav-link text-gray-700 hover:text-teal-600">About</a>
                            <a href="#" class="nav-link text-gray-700 hover:text-teal-600">Blog</a>
                            <a href="#" class="nav-link text-gray-700 hover:text-teal-600">Contact</a>
                        </div>
                        
                        <!-- Mobile menu button -->
                        <div class="md:hidden">
                            <button onclick="toggleMobileMenu()" class="text-gray-700 focus:outline-none">
                                <i data-feather="menu" class="w-6 h-6"></i>
                            </button>
                        </div>
                    </div>
                    
                    <!-- Mobile Menu -->
                    <div id="mobile-menu" class="hidden md:hidden mt-4 pb-4">
                        <a href="/" class="block py-2 text-gray-700 hover:text-teal-600">Home</a>
                        <a href="#services" class="block py-2 text-gray-700 hover:text-teal-600">Services</a>
                        <a href="#about" class="block py-2 text-gray-700 hover:text-teal-600">About</a>
                        <a href="#" class="block py-2 text-gray-700 hover:text-teal-600">Blog</a>
                        <a href="#" class="block py-2 text-gray-700 hover:text-teal-600">Contact</a>
                    </div>
                </div>
            </nav>
        `;
    }
}

customElements.define('custom-navbar', CustomNavbar);