-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathFooter.vue
More file actions
31 lines (29 loc) · 1.49 KB
/
Footer.vue
File metadata and controls
31 lines (29 loc) · 1.49 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
<template>
<!-- eslint-disable max-len -->
<!-- eslint-disable vue/no-deprecated-v-on-native-modifier -->
<div class="w-full text-center py-12">
<div class="flex justify-center">
<div class="flex flex-col mr-4">
<div class="flex">
<a target="_blank" rel="noopener noreferrer" href="https://github.com/Seluj78" class="outline-none"><img src="../../assets/home/github.png" class="opacity-50 hover:opacity-75 w-8 m-1 sm:mx-2"></a>
<a target="_blank" rel="noopener noreferrer" href="https://www.linkedin.com/in/jules-lasne/" class="outline-none"><img src="../../assets/home/linkedin.png" class="opacity-50 hover:opacity-75 w-8 m-1 sm:mx-2"></a>
</div>
<h1 class="font-semibold mt-1">Jules</h1>
</div>
<div class="flex flex-col ml-4">
<div class="flex">
<a target="_blank" rel="noopener noreferrer" href="https://github.com/supalarry" class="outline-none"><img src="../../assets/home/github.png" class="opacity-50 hover:opacity-75 w-8 m-1 sm:mx-2"></a>
<a target="_blank" rel="noopener noreferrer" href="https://www.linkedin.com/in/laurisskraucis/" class="outline-none"><img src="../../assets/home/linkedin.png" class="opacity-50 hover:opacity-75 w-8 m-1 sm:mx-2"></a>
</div>
<h1 class="font-semibold mt-1">Lauris</h1>
</div>
</div>
<h1 class="mt-6 opacity-50 font-semibold">Ⓡ Matcha 2020</h1>
</div>
</template>
<script>
/* eslint-disable indent */
export default {
name: 'Footer',
};
</script>