authorizedcabal commited on
Commit
d60f9e0
·
verified ·
1 Parent(s): 408328a

can you fix the header to include `ChatterBoxFrenzy` in white? and include a "Messages" icon, a "Home" icon, a "Profile" icon and a "+" icon

Browse files
Files changed (1) hide show
  1. components/navbar.js +14 -8
components/navbar.js CHANGED
@@ -21,18 +21,24 @@ class CustomNavbar extends HTMLElement {
21
  <nav class="text-white shadow-sm py-3">
22
  <div class="nav-container px-4 flex justify-between items-center">
23
  <div class="logo flex items-center gap-2">
24
- <i data-feather="message-square" class="w-6 h-6"></i>
25
- <span class="text-xl font-bold">ChatterBox</span>
26
  </div>
27
  <div class="flex items-center gap-2">
28
- <button class="p-2 rounded-full hover:bg-blue-600">
29
- <i data-feather="settings"></i>
30
- </button>
31
- <button class="p-2 rounded-full hover:bg-blue-600">
 
 
 
32
  <i data-feather="user"></i>
33
- </button>
 
 
 
34
  </div>
35
- </div>
36
  </nav>
37
  `;
38
  }
 
21
  <nav class="text-white shadow-sm py-3">
22
  <div class="nav-container px-4 flex justify-between items-center">
23
  <div class="logo flex items-center gap-2">
24
+ <i data-feather="message-circle" class="w-6 h-6"></i>
25
+ <span class="text-xl font-bold">ChatterBoxFrenzy</span>
26
  </div>
27
  <div class="flex items-center gap-2">
28
+ <a href="/" class="p-2 rounded-full hover:bg-blue-600 text-white">
29
+ <i data-feather="home"></i>
30
+ </a>
31
+ <a href="#" class="p-2 rounded-full hover:bg-blue-600 text-white">
32
+ <i data-feather="message-square"></i>
33
+ </a>
34
+ <a href="#" class="p-2 rounded-full hover:bg-blue-600 text-white">
35
  <i data-feather="user"></i>
36
+ </a>
37
+ <a href="#" class="p-2 rounded-full hover:bg-blue-600 text-white">
38
+ <i data-feather="plus"></i>
39
+ </a>
40
  </div>
41
+ </div>
42
  </nav>
43
  `;
44
  }