upstream #1
@ -25,14 +25,14 @@ const Header = () => {
|
|||||||
</div>
|
</div>
|
||||||
</Link>
|
</Link>
|
||||||
</div>
|
</div>
|
||||||
<div className="flex items-center leading-5 space-x-4 sm:space-x-6">
|
<div className="flex items-center space-x-4 leading-5 sm:space-x-6">
|
||||||
{headerNavLinks
|
{headerNavLinks
|
||||||
.filter((link) => link.href !== '/')
|
.filter((link) => link.href !== '/')
|
||||||
.map((link) => (
|
.map((link) => (
|
||||||
<Link
|
<Link
|
||||||
key={link.title}
|
key={link.title}
|
||||||
href={link.href}
|
href={link.href}
|
||||||
className="hidden sm:block font-medium text-gray-900 dark:text-gray-100"
|
className="hidden font-medium text-gray-900 dark:text-gray-100 sm:block"
|
||||||
>
|
>
|
||||||
{link.title}
|
{link.title}
|
||||||
</Link>
|
</Link>
|
||||||
|
@ -26,7 +26,7 @@ const MobileNav = () => {
|
|||||||
xmlns="http://www.w3.org/2000/svg"
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
viewBox="0 0 20 20"
|
viewBox="0 0 20 20"
|
||||||
fill="currentColor"
|
fill="currentColor"
|
||||||
className="text-gray-900 dark:text-gray-100 h-8 w-8"
|
className="h-8 w-8 text-gray-900 dark:text-gray-100"
|
||||||
>
|
>
|
||||||
<path
|
<path
|
||||||
fillRule="evenodd"
|
fillRule="evenodd"
|
||||||
@ -36,7 +36,7 @@ const MobileNav = () => {
|
|||||||
</svg>
|
</svg>
|
||||||
</button>
|
</button>
|
||||||
<div
|
<div
|
||||||
className={`fixed left-0 top-0 z-10 h-full w-full transform opacity-95 dark:opacity-[0.98] bg-white duration-300 ease-in-out dark:bg-gray-950 ${
|
className={`fixed left-0 top-0 z-10 h-full w-full transform bg-white opacity-95 duration-300 ease-in-out dark:bg-gray-950 dark:opacity-[0.98] ${
|
||||||
navShow ? 'translate-x-0' : 'translate-x-full'
|
navShow ? 'translate-x-0' : 'translate-x-full'
|
||||||
}`}
|
}`}
|
||||||
>
|
>
|
||||||
|
@ -18,7 +18,7 @@ const SearchButton = () => {
|
|||||||
viewBox="0 0 24 24"
|
viewBox="0 0 24 24"
|
||||||
strokeWidth={1.5}
|
strokeWidth={1.5}
|
||||||
stroke="currentColor"
|
stroke="currentColor"
|
||||||
className="text-gray-900 dark:text-gray-100 h-6 w-6"
|
className="h-6 w-6 text-gray-900 dark:text-gray-100"
|
||||||
>
|
>
|
||||||
<path
|
<path
|
||||||
strokeLinecap="round"
|
strokeLinecap="round"
|
||||||
|
@ -23,7 +23,7 @@ const ThemeSwitch = () => {
|
|||||||
xmlns="http://www.w3.org/2000/svg"
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
viewBox="0 0 20 20"
|
viewBox="0 0 20 20"
|
||||||
fill="currentColor"
|
fill="currentColor"
|
||||||
className="text-gray-900 dark:text-gray-100 h-6 w-6"
|
className="h-6 w-6 text-gray-900 dark:text-gray-100"
|
||||||
>
|
>
|
||||||
{mounted && (theme === 'dark' || resolvedTheme === 'dark') ? (
|
{mounted && (theme === 'dark' || resolvedTheme === 'dark') ? (
|
||||||
<path
|
<path
|
||||||
|
Loading…
x
Reference in New Issue
Block a user