OpenVisor-Website/src/components/kontakt.vue
2024-04-26 21:57:08 +02:00

68 lines
1.3 KiB
Vue

<template>
<footer class="footer-footer" v-bind:class="rootClassName">
<div class="footer-kontakt">
<span class="footer-kontakt1">{{ Text }}</span>
<a href="mailto:info@openvisor.ch?subject=" class="footer-email">
{{ Text1 }}
</a>
</div>
<iframe
src="https://dashboard.mailerlite.com/forms/582593/98301649820321679/share"
class="footer-newsletter-form"
></iframe>
</footer>
</template>
<script>
export default {
name: 'Kontakt',
props: {
Text: {
type: String,
default: 'Kontakt',
},
rootClassName: String,
Text1: {
type: String,
default: 'info@openvisor.ch',
},
},
}
</script>
<style scoped>
.footer-footer {
gap: var(--dl-space-space-unit);
flex: 1;
width: 100%;
display: flex;
position: relative;
margin-top: 10%;
align-items: center;
padding-left: var(--dl-space-space-oneandhalfunits);
margin-bottom: 10%;
padding-right: var(--dl-space-space-oneandhalfunits);
flex-direction: column;
justify-content: center;
}
.footer-kontakt {
color: #ffffff;
font-size: 36px;
text-align: center;
text-transform: uppercase;
}
.footer-kontakt1 {
color: #ffff00;
font-size: 18px;
align-self: center;
font-style: normal;
font-weight: 300;
text-decoration: underline;
}
</style>