Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 13 additions & 12 deletions src/components/home/Menu.js
Original file line number Diff line number Diff line change
Expand Up @@ -66,68 +66,69 @@ export default function MenuButton() {
</Menu.Item>
<Menu.Item>
{({ active }) => (
<Link href="/sponsors">
<Link href="/blog">
<a
className={classNames(
active
? 'bg-gray-100 text-gray-900 dark:bg-gray-700 dark:text-white'
: 'text-gray-700 hover:bg-gray-200 dark:text-gray-200 dark:hover:bg-gray-700',
'block px-4 py-2 text-base'
'block w-full px-4 py-2 text-left text-base'
)}
>
Sponsors
Blog
</a>
</Link>
)}
</Menu.Item>
<Menu.Item>
{({ active }) => (
<Link href="/blog">
<Link href="/sponsors">
<a
className={classNames(
active
? 'bg-gray-100 text-gray-900 dark:bg-gray-700 dark:text-white'
: 'text-gray-700 hover:bg-gray-200 dark:text-gray-200 dark:hover:bg-gray-700',
'block w-full px-4 py-2 text-left text-base'
'block px-4 py-2 text-base'
)}
>
Blog
Sponsors
</a>
</Link>
)}
</Menu.Item>
<Menu.Item>
{({ active }) => (
<Link href="/license">
<Link href="/changelog">
<a
className={classNames(
active
? 'bg-gray-100 text-gray-900 dark:bg-gray-700 dark:text-white'
: 'text-gray-700 hover:bg-gray-200 dark:text-gray-200 dark:hover:bg-gray-700',
'block px-4 py-2 text-base'
'block w-full px-4 py-2 text-left text-base'
)}
>
License
Changelog
</a>
</Link>
)}
</Menu.Item>
<Menu.Item>
{({ active }) => (
<Link href="/changelog">
<Link href="/license">
<a
className={classNames(
active
? 'bg-gray-100 text-gray-900 dark:bg-gray-700 dark:text-white'
: 'text-gray-700 hover:bg-gray-200 dark:text-gray-200 dark:hover:bg-gray-700',
'block w-full px-4 py-2 text-left text-base'
'block px-4 py-2 text-base'
)}
>
Change Log
License
</a>
</Link>
)}
</Menu.Item>

<Menu.Item>
{({ active }) => (
<Link href="https://github.com/javaistic/javaistic">
Expand Down