-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathMain.vue
More file actions
37 lines (34 loc) · 1.01 KB
/
Main.vue
File metadata and controls
37 lines (34 loc) · 1.01 KB
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
<template>
<main class="main">
<img class="illustration right" src="~/assets/imgs/TableGroup.svg" alt="People working at a table" />
<div class="container-main">
<h2 class="headerCommunity">We love our community</h2>
<p class="text"
>Devs@RTP is an inclusive group of local developers who enjoy supporting tech enthusiasts.</p>
<p class="text"
>We host community led social gatherings, mentorship, professional readiness activities such as resume reviews & mock interviews.</p>
<p class="text">Interested in volunteer opportunities? We sure could use your help.</p>
<p class="text">Don’t hesitate to reach out on Slack!</p>
<JoinSlack/>
</div>
</main>
</template>
<script>
import JoinSlack from "~/components/JoinSlack.vue";
export default {
name: 'Main',
components: {
JoinSlack
}
}
</script>
<style lang="scss">
.container-main {
margin: 30px 15px 0;
text-align: left;
}
.headerCommunity {
font-size: 1.3em;
font-family: "Trocchi", serif;
}
</style>