Update various components

This commit is contained in:
2026-02-26 21:03:21 -05:00
parent 637b3a0c34
commit 94f0f3ca13
20 changed files with 84 additions and 112 deletions

View File

@@ -8,7 +8,7 @@ export default function DarkModeSwitch(){
const updateTheme = () => {
if(theme === "system"){
if(window.document.documentElement.classList.contains("dark")){
if(globalThis.document.documentElement.classList.contains("dark")){
setTheme("light");
}
else{

View File

@@ -2,13 +2,11 @@ import type { NavBarProps } from "$/types/NavTypes";
import clsx from "clsx";
export default function NavBar(props: NavBarProps){
const {
className,
children
} = props;
export default function NavBar({
className,
children,
...props
}: Readonly<NavBarProps>){
return (
<nav
className={clsx(
@@ -16,6 +14,7 @@ export default function NavBar(props: NavBarProps){
"fixed top-0 left-0 w-full z-10",
"flex flex-row flex-nowrap items-center justify-center"
)}
{...props}
>
{children}
</nav>

View File

@@ -3,14 +3,11 @@ import { Popover, PopoverButton, PopoverPanel } from "@headlessui/react";
import clsx from "clsx";
import { RiArrowRightSLine } from "react-icons/ri";
export default function PopoverMenu(props: PopoverMenuProps){
const {
buttonContent,
anchor,
children
} = props;
export default function PopoverMenu({
buttonContent,
anchor,
children
}: Readonly<PopoverMenuProps>){
return (
<Popover>
<PopoverButton