-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathcontact.vue
More file actions
48 lines (47 loc) · 1.28 KB
/
contact.vue
File metadata and controls
48 lines (47 loc) · 1.28 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
38
39
40
41
42
43
44
45
46
47
48
<template>
<article class="container">
<section class="card">
<h2>社辦位置</h2>
<p>宏裕科技研究大樓 B4</p>
<p>可搭乘六教或科研電梯,往美食街告示牌方向走到底,右轉第二間即為社辦</p>
<p>
<a href="https://maps.app.goo.gl/9dicboZNUdjL5qjL7">https://maps.app.goo.gl/9dicboZNUdjL5qjL7</a>
</p>
<p>地址:</p>
<input
class="address"
value="106 臺北市大安區新生南路一段 3 號(國立臺北科技大學-宏裕科技研究大樓)B4 程式設計研究社"
>
</section>
<section class="card">
<h2>聯絡方式</h2>
<p>Email: <a href="mailto:contact@ntut.club">contact@ntut.club</a></p>
<p>
Instagram: <a
href="https://www.instagram.com/npc.designer"
target="_blank"
>@npc.designer</a>
</p>
<p>
Discord: <a
href="https://to.ntut.club/discord"
target="_blank"
>https://to.ntut.club/discord</a>
</p>
</section>
</article>
</template>
<style scoped>
.address {
width: 100%;
margin: 0;
color: var(--text-color);
border-style: solid;
background-color: var(--background-color);
border-radius: 0.5rem;
padding: 0.5rem;
}
.gmap {
width: 100%;
}
</style>