add to about page

This commit is contained in:
2026-03-04 21:45:42 -06:00
parent 46ed382d56
commit 9b1efb7158
18 changed files with 152 additions and 5 deletions

View File

@@ -9,7 +9,7 @@ export function Link(props: {className?: string, href: Path, replace?: boolean }
const router = useRouter();
function onClick(event: React.MouseEvent) {
event.preventDefault();
// event.preventDefault();
if(replace) {
router.replacePage(props.href);
} else {