-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.astro
55 lines (52 loc) · 1.31 KB
/
contact.astro
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
---
import ContactForm from '../components/forms/ContactForm.astro';
import Layout from '../layouts/Page.astro';
import Container from '../components/core/Container.astro';
const seo = {
title: 'Kontakt | Mejker',
description: 'Kontakt stranica uduženja "Mejker Srbija".',
};
---
<Layout {seo}>
<Container>
<section class="contact-hero__section">
<div class="contact-hero__text-section">
<h1>Kontaktirajte nas</h1>
<p>
Ukoliko želite da stupite u kontakt sa nama, možete nam postalti mejl
na adresu <a href="mailto:[email protected]">[email protected]</a> ili nam
pošaljite poruku na <a href="https://instagram.com/makersrbija"
>Instagram</a
>.
</p>
</div>
</section>
</Container>
</Layout>
<style>
.contact-hero__section {
margin: var(--section-margin) auto;
display: grid;
/* grid-template-columns: 1fr 1fr; */
min-height: calc(90vh - var(--navbar-height));
gap: 3rem;
}
.contact-hero__text-section {
padding: 2rem;
display: flex;
flex-direction: column;
justify-content: center;
background-color: var(--theme-surface-1);
border-radius: var(--theme-shape-radius);
}
.col-2__container {
display: flex;
flex-direction: column;
justify-content: center;
}
@media (max-width: 768px) {
.contact-hero__section {
grid-template-columns: 1fr;
}
}
</style>