mobile-friendly view and scss->sass
Some checks failed
/ image_build (push) Has been cancelled

This commit is contained in:
2026-03-07 23:19:21 -06:00
parent e8a8da31ac
commit db845bf6c6
26 changed files with 243 additions and 273 deletions

View File

@@ -22,11 +22,11 @@ export function RouterProvider(props : PropsWithChildren) {
}, []);
return <RouterContext.Provider value={{
pushPage: function(newPath: Path) {
pushPage(newPath: Path) {
window.history.pushState(newPath,"", newPath);
setPath(newPath as Path);
},
replacePage: function(newPath: Path) {
replacePage(newPath: Path) {
window.history.replaceState(newPath, "", newPath);
setPath(newPath as Path);
},