15 lines
442 B
Plaintext
15 lines
442 B
Plaintext
---
|
|
import Dashboard from "../components/Dashboard.svelte";
|
|
import PageLayout from "../layouts/PageLayout.astro";
|
|
import {t} from "astro-i18n";
|
|
---
|
|
|
|
<PageLayout title={t("dashboard.page")}>
|
|
<script is:inline>
|
|
import {l} from "../util/util";
|
|
if ((localStorage.getItem("sw-session") ?? "") === "") {
|
|
window.location.href = l("/login");
|
|
}
|
|
</script>
|
|
<Dashboard client:only="svelte" />
|
|
</PageLayout> |