Refactor: Update favicon and enhance user profile display

- 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.
This commit is contained in:
2025-04-06 22:47:41 +02:00
parent b9df970700
commit 1153a2003f
8 changed files with 231 additions and 31 deletions

View File

@@ -1,6 +1,6 @@
<script lang="ts" setup>
useHead({
link: [{ rel: 'icon', type: 'image/png', href: '/favicon.png' }],
link: [{ rel: 'icon', type: 'image/webp', href: '/favicon.webp' }],
})
</script>