mirror of
https://github.com/ArthurDanjou/artsite.git
synced 2026-01-14 15:54:13 +01:00
- Replaced the favicon with a new webp format for better performance. - Updated the user avatar component in the Quote.vue file to use the new favicon and adjusted its size and styling. - Added a new section in the projects and writings pages to introduce the author, including links to LinkedIn and GitHub profiles with a personalized message. - Improved the layout and styling of the author introduction for better visual appeal.
43 lines
675 B
Vue
43 lines
675 B
Vue
<script lang="ts" setup>
|
|
useHead({
|
|
link: [{ rel: 'icon', type: 'image/webp', href: '/favicon.webp' }],
|
|
})
|
|
</script>
|
|
|
|
<template>
|
|
<UApp>
|
|
<NuxtLoadingIndicator color="#808080" />
|
|
<AppBackground />
|
|
<UContainer class="z-50 relative">
|
|
<AppHeader />
|
|
<NuxtPage class="mt-12" />
|
|
<AppFooter />
|
|
</UContainer>
|
|
</UApp>
|
|
</template>
|
|
|
|
<style>
|
|
body {
|
|
font-family: 'DM Sans', sans-serif;
|
|
}
|
|
|
|
.sofia {
|
|
font-family: 'Sofia Sans', sans-serif;
|
|
}
|
|
|
|
.page-enter-active,
|
|
.page-leave-active {
|
|
transition: all 0.2s;
|
|
}
|
|
|
|
.page-leave-to {
|
|
opacity: 0;
|
|
transform: translateY(-5px);
|
|
}
|
|
|
|
.page-enter-from {
|
|
opacity: 0;
|
|
transform: translateY(5px);
|
|
}
|
|
</style>
|