Convert multiple pages into SPA

This commit is contained in:
2025-10-09 15:48:23 +02:00
parent c616b2da7f
commit 06d04a1abc
110 changed files with 1245 additions and 1319 deletions

View File

@@ -0,0 +1,12 @@
import type { ComponentType } from "svelte";
import { writable } from "svelte/store";
export type Tab = {
path: string,
prefix?: string,
title: string,
component?: ComponentType,
footer?: boolean,
login?: boolean,
};
export let current_page_store = writable({} as Tab);