Skip to content

Commit

Permalink
feat(ui): add dark alternative colors on Header
Browse files Browse the repository at this point in the history
  • Loading branch information
mateusfg7 committed Dec 12, 2022
1 parent 14c3cf1 commit 71392bb
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions src/components/Header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,16 @@ export const Header: React.FC<Props> = ({ title }) => {
<h1 className="text-xl font-bold">{title}</h1>
</div>
<nav>
<Link href="/" className="text-neutral-900 mr-8 hover:underline">
<Link
href="/"
className="text-neutral-900 dark:text-neutral-100 mr-8 hover:underline"
>
Home
</Link>

<Link
href="/categories"
className="text-neutral-900 mr-8 hover:underline"
className="text-neutral-900 dark:text-neutral-100 mr-8 hover:underline"
>
Categories
</Link>
Expand Down

0 comments on commit 71392bb

Please sign in to comment.