Make sidebar group and clean up styling a bit

This commit is contained in:
Dominic Ferrando
2026-07-10 12:36:02 -04:00
parent 0ed1945b06
commit 170bde7e1b
5 changed files with 35 additions and 19 deletions
+2 -2
View File
@@ -1,6 +1,6 @@
import { redirect } from "@sveltejs/kit";
import type { PageServerLoad } from "./$types";
export const load: PageServerLoad = ({}) => {
redirect(308, "/calculator");
export const load: PageServerLoad = ({ }) => {
redirect(308, "/calculator/configurations");
};