Passwort Vergessen Seiten

This commit is contained in:
Moritz Utcke
2024-02-15 17:04:15 +07:00
parent 933ef6d876
commit 06b423a22e
7 changed files with 204 additions and 21 deletions

View File

@@ -4,8 +4,8 @@ import i18next from "i18next";
import "../style/global.scss";
import "../../svelte-dialogs.config"
import "svelte-ripple-action/ripple.css"
import { Sun, Moon } from "radix-svelte-icons";
import ThemeController from "#components/ThemeController.svelte";
import {NotificationWrapper} from "@ibcornelsen/ui";
export interface Props {
title: string;
@@ -85,7 +85,7 @@ const lightTheme = Astro.cookies.get("theme").value === "light";
content="https://online-energieausweis.org/images/energieausweis-online-erstellen.jpg"
/>
<title>
{title || "Energieausweis online erstellen - Online Energieausweis"}
{title} | IBCornelsen
</title>
</head>
@@ -99,5 +99,8 @@ const lightTheme = Astro.cookies.get("theme").value === "light";
<div class="absolute top-4 right-4">
<ThemeController lightTheme={lightTheme} client:load></ThemeController>
</div>
<div class="absolute right-4 bottom-4">
<NotificationWrapper />
</div>
</body>
</html>