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- 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-
|
| 25 |
-
<span class="text-xl font-bold">
|
| 26 |
</div>
|
| 27 |
<div class="flex items-center gap-2">
|
| 28 |
-
<
|
| 29 |
-
<i data-feather="
|
| 30 |
-
</
|
| 31 |
-
<
|
|
|
|
|
|
|
|
|
|
| 32 |
<i data-feather="user"></i>
|
| 33 |
-
</
|
|
|
|
|
|
|
|
|
|
| 34 |
</div>
|
| 35 |
-
|
| 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 |
}
|