diff --git a/public/images/immowelt/hero-desktop.png b/public/images/immowelt/hero-desktop.png new file mode 100644 index 00000000..8073d325 Binary files /dev/null and b/public/images/immowelt/hero-desktop.png differ diff --git a/src/components/Ausweis/LueftungKuehlung.svelte b/src/components/Ausweis/LueftungKuehlung.svelte index c304b351..12564f10 100644 --- a/src/components/Ausweis/LueftungKuehlung.svelte +++ b/src/components/Ausweis/LueftungKuehlung.svelte @@ -10,10 +10,11 @@ -
@@ -77,7 +78,7 @@ xl:grid-cols-4 xl:gap-x-8 xl:gap-y-8
-
+
@@ -28,6 +29,7 @@ const { tabHover6 } = Astro.props;
  • +
  • @@ -38,7 +40,7 @@ const { tabHover6 } = Astro.props; -
    @@ -59,8 +61,12 @@ background-repeat:no-repeat; background-position:right;"> @apply px-4 py-2 text-primary-content font-medium text-lg tracking-normal hover:bg-secondary h-full; } - .navlist{@apply block sm:flex pl-[1.75rem];} - .navlist li{@apply flex md:pr-[6px]} + .navlist { + @apply flex flex-wrap flex-col sm:flex-row pl-[1.75rem] sm:pl-[1.75rem]; +} +.navlist li { + @apply pr-0 sm:pr-[6px] pb-1 sm:pb-0; +} .navlist li button{@apply text-[0.75rem] md:text-[1rem] text-[#646464] sm:p-2 text-left hover:rounded-[1rem] hover:bg-[rgba(50,50,50,0.1)]; font-family: "immo Sans"; diff --git a/src/layouts/AusweisLayoutDaten.astro b/src/layouts/AusweisLayoutDaten.astro index e4657fee..b7434832 100644 --- a/src/layouts/AusweisLayoutDaten.astro +++ b/src/layouts/AusweisLayoutDaten.astro @@ -17,7 +17,7 @@ export interface Props { const { title } = Astro.props; --- - + diff --git a/src/layouts/AusweisLayoutDaten_immowelt.astro b/src/layouts/AusweisLayoutDaten_immowelt.astro index 9c4974c7..20bc59ea 100644 --- a/src/layouts/AusweisLayoutDaten_immowelt.astro +++ b/src/layouts/AusweisLayoutDaten_immowelt.astro @@ -26,23 +26,71 @@ const { tabHover5 } = Astro.props; const { tabHover6 } = Astro.props; --- @@ -93,11 +141,11 @@ window.addEventListener("scroll", (event) => {
    -
    +
    -
    +
    diff --git a/src/pages/immowelt/angebot-anfragen/geg-nachweis-wohnen-anfragen/index.astro b/src/pages/immowelt/angebot-anfragen/geg-nachweis-wohnen-anfragen/index.astro index 8ff0eeea..4c30dbcd 100644 --- a/src/pages/immowelt/angebot-anfragen/geg-nachweis-wohnen-anfragen/index.astro +++ b/src/pages/immowelt/angebot-anfragen/geg-nachweis-wohnen-anfragen/index.astro @@ -5,8 +5,11 @@ import { createCaller } from "src/astro-typesafe-api-caller"; import { API_ACCESS_TOKEN_COOKIE_NAME } from "#lib/constants.js"; import { validateAccessTokenServer } from "#server/lib/validateAccessToken.js"; import GEGNachweisWohnenModule from "#modules/angebot-anfragen/GEGNachweisWohnenModule.svelte"; +import { Enums } from "#lib/server/prisma"; const uid = Astro.url.searchParams.get("uid"); +const ausweistyp = Astro.url.searchParams.get("ausweistyp") || Enums.AusweisTyp.Standard; + let nachweis: GEGNachweisWohnenClient = {} as GEGNachweisWohnenClient; let aufnahme: AufnahmeClient = {} as AufnahmeClient; let objekt: ObjektClient = {} as ObjektClient; @@ -86,5 +89,5 @@ if (uid) { --- - + diff --git a/src/pages/immowelt/energieausweis-erstellen/verbrauchsausweis-gewerbe/index.astro b/src/pages/immowelt/energieausweis-erstellen/verbrauchsausweis-gewerbe/index.astro index 169aba0c..b12c5f84 100644 --- a/src/pages/immowelt/energieausweis-erstellen/verbrauchsausweis-gewerbe/index.astro +++ b/src/pages/immowelt/energieausweis-erstellen/verbrauchsausweis-gewerbe/index.astro @@ -6,8 +6,11 @@ import { inferOutput } from "astro-typesafe-api/client"; import { API_ACCESS_TOKEN_COOKIE_NAME } from "#lib/constants"; import { validateAccessTokenServer } from "#server/lib/validateAccessToken"; import VerbrauchsausweisGewerbeModule from "#modules/VerbrauchsausweisGewerbe/VerbrauchsausweisGewerbeModule.svelte"; +import { Enums } from "#lib/server/prisma"; const uid = Astro.url.searchParams.get("uid"); +const ausweistyp = Astro.url.searchParams.get("ausweistyp") || Enums.AusweisTyp.Standard; + let ausweis: VerbrauchsausweisGewerbeClient = {} as VerbrauchsausweisGewerbeClient; let aufnahme: AufnahmeClient = {} as AufnahmeClient; let objekt: ObjektClient = {} as ObjektClient; @@ -79,5 +82,5 @@ if (uid) { --- - + \ No newline at end of file