aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/Navbar.js
diff options
context:
space:
mode:
authorJeff <jeffkleinaitis@gmail.com>2024-04-15 13:31:29 -0400
committerJeff <jeffkleinaitis@gmail.com>2024-04-15 13:31:29 -0400
commit18f3cb201b7754ca373610e110ee46c13acebf59 (patch)
tree80e7bf1a236e45bec3c47d8b516c1df8af5da2a5 /src/components/Navbar.js
parente14260a62dbd99f1e5c957cb15dd02b7a36675fd (diff)
fix: Update comment to better specify part of header its referencing
Diffstat (limited to 'src/components/Navbar.js')
-rw-r--r--src/components/Navbar.js8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/components/Navbar.js b/src/components/Navbar.js
index f0db2cd..27f37f0 100644
--- a/src/components/Navbar.js
+++ b/src/components/Navbar.js
@@ -24,7 +24,7 @@ const Navbar = () => {
return (
<div className="w-full">
<nav className="container relative flex flex-wrap items-center justify-between p-8 mx-auto lg:justify-between lg:flex-nowrap lg:px-0.5 xl:px-0">
- {/* Logo */}
+ {/* Logo */}
<Disclosure>
{({ open }) => (
<>
@@ -104,7 +104,7 @@ const Navbar = () => {
)}
</Disclosure>
- {/* Header bar */}
+ {/* Right side header bar */}
{!user ? (
<div className="hidden text-center lg:flex lg:items-center">
<ul className="items-center justify-end flex-1 pt-6 list-none lg:pt-0 lg:flex">
@@ -142,8 +142,8 @@ const Navbar = () => {
</ul>
</Disclosure.Panel>
</Disclosure>
- </div> )
- }
+ </div>
+ )}
</nav>
</div>
)}