Skip to content

Commit

Permalink
add labels (#56)
Browse files Browse the repository at this point in the history
  • Loading branch information
Josh-Walker-GM authored Aug 8, 2024
1 parent e72631f commit 26df5ef
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
6 changes: 5 additions & 1 deletion web/src/components/Home/NavHome/NavHome.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -137,6 +137,7 @@ const Nav = () => {
onClick={() => {
setIsNavShowing((prevValue) => !prevValue)
}}
aria-label="toggle navigation menu"
>
<motion.div
className="h-[2px] w-8 bg-white"
Expand Down Expand Up @@ -289,7 +290,10 @@ const Nav = () => {
animate={{ opacity: 1, x: 0, width: 'auto' }}
viewport={{ amount: 1500 }}
>
<a href={Constants.GET_STARTED} className="button hover:text-black truncate">
<a
href={Constants.GET_STARTED}
className="button truncate hover:text-black"
>
Get Started
</a>
</motion.li>
Expand Down
1 change: 1 addition & 0 deletions web/src/components/Nav/Nav.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -144,6 +144,7 @@ const Nav = () => {
onClick={() => {
setIsNavShowing((prevValue) => !prevValue)
}}
aria-label="toggle navigation menu"
>
<motion.div
className="h-[2px] w-8 bg-white"
Expand Down

0 comments on commit 26df5ef

Please sign in to comment.