From 0279d0121c72bb8940b8d00e5af32657fd656810 Mon Sep 17 00:00:00 2001 From: Jens Cornelsen <79703163+IB-Cornelsen@users.noreply.github.com> Date: Tue, 10 Dec 2024 14:04:40 +0100 Subject: [PATCH] Fixes mit Moritz --- package.json | 1 + .../BedarfsausweisContent1.svelte | 263 ++++++++++++++++++ src/lib/constants.ts | 6 +- .../bedarfsausweis-wohngebaeude/index.astro | 2 +- 4 files changed, 268 insertions(+), 4 deletions(-) create mode 100644 src/components/Bedarfsausweis/BedarfsausweisContent1.svelte diff --git a/package.json b/package.json index f9e1674d..ad3fcdb7 100644 --- a/package.json +++ b/package.json @@ -45,6 +45,7 @@ "i18next-http-backend": "^2.6.2", "js-cookie": "^3.0.5", "js-interpolate": "^1.0.1", + "jsonwebtoken": "^9.0.2", "katex": "^0.16.11", "moment": "^2.30.1", "moment-timezone": "^0.5.46", diff --git a/src/components/Bedarfsausweis/BedarfsausweisContent1.svelte b/src/components/Bedarfsausweis/BedarfsausweisContent1.svelte new file mode 100644 index 00000000..4606109d --- /dev/null +++ b/src/components/Bedarfsausweis/BedarfsausweisContent1.svelte @@ -0,0 +1,263 @@ + + +
+
+

Bedarfsausweis erstellen - 75€

+ +
+ + +
+ +
+ +
+ +
+ +
+
+ +
+ +
+ + + + + +
+
+ + +
+ + +
+ + +
+ + +
+ + +
+ + +
+ + +
+ + +
+
+
+ +
+ + + diff --git a/src/lib/constants.ts b/src/lib/constants.ts index c7c2865a..f50a2fb6 100644 --- a/src/lib/constants.ts +++ b/src/lib/constants.ts @@ -10,9 +10,9 @@ export const API_UID_COOKIE_NAME = "uid"; export const PRICES: Record = { // per E-Mail , inkl.Beratung, offline BedarfsausweisWohnen: [135, 145, 290], - VerbrauchsausweisWohnen: [55, 75, 180], + VerbrauchsausweisWohnen: [65, 75, 180], VerbrauchsausweisGewerbe: [95, 115, 360], - BedarfsausweisGewerbe: [400, 0, 0] + BedarfsausweisGewerbe: [500, 0, 0] }; export const SERVICES: Record> = { @@ -34,4 +34,4 @@ export const SERVICES: Record> = SameDay: 29, Telefonberatung: 25, }, -}; + }; diff --git a/src/pages/energieausweis-erstellen/bedarfsausweis-wohngebaeude/index.astro b/src/pages/energieausweis-erstellen/bedarfsausweis-wohngebaeude/index.astro index 105b990e..47b6419d 100644 --- a/src/pages/energieausweis-erstellen/bedarfsausweis-wohngebaeude/index.astro +++ b/src/pages/energieausweis-erstellen/bedarfsausweis-wohngebaeude/index.astro @@ -1,7 +1,7 @@ --- import AusweisLayout from "#layouts/AusweisLayout.astro"; -import BedarfsausweisContent from "#components/Bedarfsausweis/BedarfsausweisContent.svelte"; +import BedarfsausweisContent from "#components/Bedarfsausweis/BedarfsausweisContent1.svelte"; ---