Skip to content

Commit

Permalink
💄 Hover effect on name link
Browse files Browse the repository at this point in the history
  • Loading branch information
n1ckoates committed Nov 17, 2024
1 parent 6df1972 commit be8404b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
5 changes: 4 additions & 1 deletion app/components/Navbar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,10 @@ export default function Navbar() {
>
<Menu open={open} setOpen={setOpen} />

<Link className="text-3xl font-semibold" href="/">
<Link
className="text-3xl font-semibold transition-colors hover:text-zinc-600 dark:hover:text-zinc-400"
href="/"
>
Nick Oates
</Link>

Expand Down
2 changes: 1 addition & 1 deletion app/components/Sidebar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ export default function Sidebar() {
<div className="sticky top-20 flex flex-col">
<div className="flex flex-row items-center">
<Link
className="min-w-[14rem] align-middle text-4xl font-bold"
className="min-w-[14rem] align-middle text-4xl font-bold transition-colors hover:text-zinc-600 dark:hover:text-zinc-400"
href="/"
>
Nick Oates
Expand Down

0 comments on commit be8404b

Please sign in to comment.