-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.vue
154 lines (141 loc) · 3.55 KB
/
contact.vue
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
<!-- Contact -->
<template>
<SmoothScroll>
<div class="contact-container relative">
<PageTitleSection
:section-number="4"
title="Contact"
index-style="chapter"
section-style="half"
>
</PageTitleSection>
<FullWidthContentSection>
<p>
I'm currently looking for a full-time web developer job in Canada. I'm
also open to freelance projects and collaboration. Feel free to
contact me :)
</p>
<client-only>
<p>
Or we can just be friends.
<br class="inline sm:hidden" />
<HighlightSpan style-class="highlight-mint">
Come and say hi
</HighlightSpan>
:)
</p>
</client-only>
</FullWidthContentSection>
<RotatingTitleLink
text="Drop-Me-An-Email"
link="mailto:snowiewongdev@gmail.com"
class="mb-4"
>
</RotatingTitleLink>
<SocialLinkSection :social-links="socialLinks"> </SocialLinkSection>
<rotating-circle class="rotating-circle-1" location="contact">
</rotating-circle>
<rotating-circle class="rotating-circle-2" location="contact">
</rotating-circle>
<Footer />
</div>
</SmoothScroll>
</template>
<script>
import SmoothScroll from "~/components/SmoothScroll.vue";
import PageTitleSection from "~/components/PageTitleSection.vue";
import FullWidthContentSection from "~/components/FullWidthContentSection.vue";
import HighlightSpan from "~/components/HighlightSpan.vue";
import RotatingTitleLink from "~/components/RotatingTitleLink.vue";
import SocialLinkSection from "~/components/SocialLinkSection.vue";
import RotatingCircle from "~/components/RotatingCircle.vue";
import Footer from "@/components/Footer.vue";
export default {
head() {
return {
title: "Contact",
meta: [
{
hid: "description",
name: "description",
content:
"Please feel free to contact Snowie via email for freelance project enquiries or full-time web developer opportunity in Canada",
},
],
};
},
data() {
return {
socialLinks: [
{
name: "Github",
url: "https://github.com/snowiewdev",
icon: "github.svg",
},
{
name: "Codepen",
url: "https://codepen.io/snowiewdev",
icon: "codepen.svg",
},
{
name: "LinkedIn",
url: "https://www.linkedin.com/in/snowie-wong/",
icon: "linkedin.svg",
},
{
name: "CSSBattle",
url: "https://cssbattle.dev/player/snowiewdev",
icon: "cssbattle.svg",
},
],
};
},
components: {
SmoothScroll,
PageTitleSection,
FullWidthContentSection,
HighlightSpan,
RotatingTitleLink,
SocialLinkSection,
RotatingCircle,
Footer,
},
mounted() {
this.$root.$refs.customCursor.removeCursorActiveStyle();
this.$root.$refs.customCursor.initActiveCursorDetection();
},
methods: {},
};
</script>
<style lang="scss" scoped>
[data-scroll-container] {
perspective: none;
}
.contact-container {
width: 100%;
max-width: 100vw;
min-height: 100vh;
// height: -webkit-fill-available;
padding-bottom: 100px;
overflow: hidden;
}
.rotating-circle-1 {
top: 7%;
left: -70px;
}
.rotating-circle-2 {
bottom: 7%;
right: -70px;
animation-direction: reverse;
}
@screen lg {
.rotating-circle-1 {
top: 10%;
left: -7%;
}
.rotating-circle-2 {
bottom: 5%;
right: -7%;
}
}
</style>