This commit is contained in:
José Conde
2023-06-14 20:26:42 +02:00
parent cc458a43db
commit 8dcc575699
17 changed files with 527 additions and 26 deletions

View File

@ -0,0 +1,59 @@
<template>
<MenuVue type="contact" />
<div class="contact-section">
<div class="left">
<h1>Contacto</h1>
<p>Si está interesado o tiene alguna pregunta, ¡contáctenos!</p>
<h3>Correo Electronico</h3>
<p>info@tayronafoods.com</p>
<p>alejandro@tayronafoods.com</p>
<p>jose@tayronafoods.com</p>
<h3>Teléfonos</h3>
<p>+49(0)176 321 368 59</p>
<p>+49(0)152 549 389 62</p>
<h3>Redes Sociales</h3>
<p>Instagram</p>
</div>
<div class="right"></div>
</div>
</template>
<script>
import MenuVue from '../../components/Menu.vue';
export default {
components: { MenuVue }
}
</script>
<style lang="scss" scoped>
.contact-section {
min-height: 100px;
background-color: #fff;
display: grid;
grid-template-columns: 1fr 1fr;
.left {
padding: 72px 80px;
}
h1 {
font-weight: 400;
font-size: 64px;
line-height: 75px;
}
h3 {
margin-top: 54px;
font-weight: 400;
font-size: 32px;
line-height: 38px;
}
p {
font-weight: 400;
font-size: 20px;
line-height: 24px;
}
}
</style>