Skip to content

Commit

Permalink
Merge pull request #113 from clubcapra/fix-email
Browse files Browse the repository at this point in the history
Fix the email in the footer
  • Loading branch information
nathan-gt authored Aug 22, 2024
2 parents 9e8132f + b0f3b19 commit cd14f43
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/components/FooterComponent.vue
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ import {
faInstagram,
faFacebook,
} from '@fortawesome/free-brands-svg-icons';
const email = '[email protected]';
</script>

<template>
Expand All @@ -18,7 +19,7 @@ import {
<img :src="logo" alt="logo" class="h-16 w-16" />
<div class="flex flex-row items-center text-lg gap-1">
<FontAwesomeIcon :icon="faEnvelope" class="w-6" />
<p>[email protected]</p>
<a :href="'mailto:' + email">{{ email }}</a>
</div>
<div class="flex flex-row items-center text-lg gap-1">
<FontAwesomeIcon :icon="faLocationDot" class="w-6" />
Expand Down

0 comments on commit cd14f43

Please sign in to comment.