Files
online-energieausweis/src/components/design/content/card-BAG-widget.svelte
Jens Cornelsen 7cf55353ae Widget
2024-12-08 16:14:32 +01:00

22 lines
866 B
Svelte

<script>
import { PRICES } from "#lib/constants";
</script>
<div id ="card-BA-G-promo" class="box card bg-white px-6 py-4 mb-5">
<div class="grid">
<h2>Bedarfssausweis Gewerbe</h2>
<hr class="mb-4">
<img class="w-[40%] justify-self-left !min-w-[50px] mb-[1rem]" src="/images/right-sidebar/UMBE_gewerbegebaeude.svg" alt="Gewerbe Bedarfsausweis"/>
<p class="promo tracking-tighter text-2xl text-gray-700 pl-6">ab<span class="promo pl-2">{PRICES.BedarfsausweisGewerbe[0]}</span></p>
<a href="./energieausweis-erstellen/bedarfsausweis-gewerbe/" id="link-BA-promo"
class=" w-[90%] justify-self-center text-center text-white font-[700] bg-secondary rounded-md px-3 py-1 mt-2 no-underline text-[1rem]
hover:bg-primary
" >jetzt online erstellen</a>
</div>
</div>
<style lang="scss">
</style>