upstream #1

Merged
jblu merged 1007 commits from upstream into main 2024-11-04 22:35:57 -06:00
4 changed files with 6 additions and 6 deletions
Showing only changes of commit c9ae2edb93 - Show all commits

View File

@ -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>

View File

@ -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'
}`} }`}
> >

View File

@ -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"

View File

@ -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