We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9e8132f commit b0f3b19Copy full SHA for b0f3b19
src/components/FooterComponent.vue
@@ -8,6 +8,7 @@ import {
8
faInstagram,
9
faFacebook,
10
} from '@fortawesome/free-brands-svg-icons';
11
+const email = 'capra@ens.etsmtl.ca';
12
</script>
13
14
<template>
@@ -18,7 +19,7 @@ import {
18
19
<img :src="logo" alt="logo" class="h-16 w-16" />
20
<div class="flex flex-row items-center text-lg gap-1">
21
<FontAwesomeIcon :icon="faEnvelope" class="w-6" />
- <p>clubcapra@etsmtl.ca</p>
22
+ <a :href="'mailto:' + email">{{ email }}</a>
23
</div>
24
25
<FontAwesomeIcon :icon="faLocationDot" class="w-6" />
0 commit comments