23 lines
725 B
Plaintext
23 lines
725 B
Plaintext
---
|
|
import CardContact from "#components/design/sidebars/cards/ContactCard.svelte";
|
|
import CardPriceiInfo from "#components/design/sidebars/cards/cardPriceiInfo.svelte";
|
|
import CardProduktSidebar from "#components/design/sidebars/cards/CardProduktSidebar.svelte";
|
|
|
|
import { PRICES } from "#lib/constants";
|
|
import { Enums } from "@ibcornelsen/database/client";
|
|
---
|
|
|
|
<div class="hidden 2xl:block">
|
|
|
|
<CardContact />
|
|
|
|
|
|
<CardProduktSidebar art="Verbrauchsausweis Wohnen" price={PRICES.VerbrauchsausweisWohnen[Enums.AusweisTyp.Standard]}></CardProduktSidebar>
|
|
<CardPriceiInfo />
|
|
<CardProduktSidebar art="Bedarfsausweis Gewerbe" price={PRICES.BedarfsausweisGewerbe[Enums.AusweisTyp.Standard]}></CardProduktSidebar>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div> |