This commit is contained in:
2024-08-13 12:55:04 +02:00
parent 74b47efcad
commit 4b368f73e8
5 changed files with 20 additions and 18 deletions

View File

@@ -4,6 +4,7 @@ import NavbarLayout from "@layouts/NavbarLayout.astro";
import {t} from "astro-i18n";
import {Image} from "astro:assets";
import localBau from "@images/2023-10-08_20.43.43.png";
import BackgroundImage from "../components/BackgroundImage.astro";
---
<NavbarLayout title={t("login.page")}>
@@ -19,8 +20,9 @@ import localBau from "@images/2023-10-08_20.43.43.png";
}
});
</script>
<Image src={localBau} alt="Bau" width="1920" height="1080"
class="w-screen h-screen dark:brightness-75 fixed -z-10 object-cover" draggable="false"/>
<div class="h-screen w-screen fixed -z-10">
<BackgroundImage />
</div>
<div class="h-screen mx-auto p-8 rounded-b-md pt-40 sm:pt-28 md:pt-14 flex flex-col justify-center items-center
dark:text-white " style="width: min(100vw, 75em);">
<Login client:load/>