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..0f20e816 --- /dev/null +++ b/src/components/Bedarfsausweis/BedarfsausweisContent1.svelte @@ -0,0 +1,414 @@ + + +
+
+

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"; ---