Fixed merge

This commit is contained in:
Dominic Villemure
2024-04-01 01:00:12 -04:00
17 changed files with 169 additions and 164 deletions

View File

@@ -67,18 +67,18 @@
</template>
<script setup>
import { useAuthStore } from '@/plugins/store/authStore';
import { auth } from '@/stores/auth.js';
import { useRouter } from 'vue-router';
const authStore = useAuthStore();
const store = auth();
const router = useRouter();
const logout = () => {
authStore.logout();
store.logout();
router.push('/login');
}
const user = authStore.user;
const user = store.user;
</script>

View File

@@ -20,17 +20,17 @@
<v-row justify="center">
<v-col cols="auto">
<a href="https://www.facebook.com/profile.php?id=61556819217561">
<img class="icons" src="../../../images/facebookiconblackpink.png" alt="Description image 2">
<img class="icons" src="../../images/facebookiconblackpink.png" alt="Description image 2">
</a>
</v-col>
<v-col cols="auto">
<a href="https://www.instagram.com/hutopy.inc/">
<img src="../../../images/instagramblackpink.png" alt="Description image 3" class="icons">
<img src="../../images/instagramblackpink.png" alt="Description image 3" class="icons">
</a>
</v-col>
<v-col cols="auto">
<router-link :to="{ name: 'home' }">
<img src="../../../images/xblackpink.png" alt="Description image 1" class="icons">
<img src="../../images/xblackpink.png" alt="Description image 1" class="icons">
</router-link>
</v-col>
</v-row>