Added mail

This commit is contained in:
2021-08-30 22:43:02 +02:00
parent d4692a9723
commit 109573fb8e
8 changed files with 384 additions and 5 deletions

View File

@@ -1,16 +1,63 @@
<template>
<div class="contact">
<h1>{{ $route.meta.title }}</h1>
<p>Witam wszystkich bardzo serdecznie!</p>
</div>
<section class="contact">
<div class="container">
<MailContact />
<OtherContact />
</div>
</section>
</template>
<script>
import MailContact from '../components/sections/contacts/MailContact'
import OtherContact from '../components/sections/contacts/OtherContact'
export default {
name: 'Contact'
name: 'Contact',
mounted () {
const header = {
title: this.$route.meta.title,
description: 'Chcesz o coś zapytać? Chciałbyś współpracować? Napisz!'
}
this.$store.commit('setHeader', header)
},
components: {
MailContact,
OtherContact
}
}
</script>
<style lang="scss">
.contact {
padding: 25px 0;
.container {
display: flex;
align-items: flex-start;
justify-content: center;
}
@media screen and (max-width: 940px) {
.container {
display: block;
margin: 0 auto;
.contact-container {
margin: 0 auto 25px;
&:last-child {
margin-bottom: 0;
}
}
}
}
@media screen and (max-width: 640px) {
.container {
padding: 0 10px;
.contact-container {
max-width: unset;
}
}
}
}
</style>