feat: Implement initial portfolio website structure with components for various sections, i18n, and GitHub integration.

This commit is contained in:
mahdiarghyani
2025-12-13 12:59:24 +03:30
parent e11a59f02d
commit bda5f86a79
26 changed files with 547 additions and 82 deletions
+2 -2
View File
@@ -1,5 +1,5 @@
<template>
<footer class="py-10">
<footer class=" pb-10 sm:pb-12">
<UContainer>
<div class="flex flex-col items-center gap-4 text-center text-sm text-gray-600 dark:text-gray-400">
<ClientOnly>
@@ -31,7 +31,7 @@ const colorMode = useColorMode()
const currentYear = computed(() => new Date().getFullYear())
const logoSrc = computed(() => {
return colorMode.value === 'dark'
? '/favicon/android-chrome-192x192-dark.png'
? '/favicon/logo-nobg.svg'
: '/favicon/android-chrome-192x192.png'
})
</script>