+
-
- {{ t('maths') }}
+
+
+ {{ t('maths') }}
+
diff --git a/app/components/home/CatchPhrase.vue b/app/components/home/CatchPhrase.vue
index fa378e3..b08887c 100644
--- a/app/components/home/CatchPhrase.vue
+++ b/app/components/home/CatchPhrase.vue
@@ -1,7 +1,7 @@
diff --git a/app/components/home/Link.vue b/app/components/home/Link.vue
index 68439cb..b5faf05 100644
--- a/app/components/home/Link.vue
+++ b/app/components/home/Link.vue
@@ -2,11 +2,11 @@
defineProps({
label: {
type: String,
- required: true,
+ required: true
},
href: {
type: String,
- required: true,
+ required: true
},
icon: {
type: String,
@@ -14,8 +14,8 @@ defineProps({
},
blanked: {
type: Boolean,
- default: false,
- },
+ default: false
+ }
})
diff --git a/app/components/home/Name.vue b/app/components/home/Name.vue
index d3ebf15..514ad7a 100644
--- a/app/components/home/Name.vue
+++ b/app/components/home/Name.vue
@@ -1,6 +1,6 @@
diff --git a/app/components/home/Quote.vue b/app/components/home/Quote.vue
index 61f3f2d..a6a2e2b 100644
--- a/app/components/home/Quote.vue
+++ b/app/components/home/Quote.vue
@@ -1,6 +1,6 @@
diff --git a/app/components/home/Stats.vue b/app/components/home/Stats.vue
index 1d15163..899d06a 100644
--- a/app/components/home/Stats.vue
+++ b/app/components/home/Stats.vue
@@ -3,7 +3,7 @@ import type { Stats } from '~~/types'
import { usePrecision } from '@vueuse/math'
const { locale, locales, t } = useI18n({
- useScope: 'local',
+ useScope: 'local'
})
const currentLocale = computed(() => locales.value.find(l => l.code === locale.value))
diff --git a/app/error.vue b/app/error.vue
index 15dcd5c..fad237f 100644
--- a/app/error.vue
+++ b/app/error.vue
@@ -6,7 +6,10 @@
I think you're lost, let's go back
-
+
diff --git a/app/pages/chat.vue b/app/pages/chat.vue
index edcf87a..e9d8a6a 100644
--- a/app/pages/chat.vue
+++ b/app/pages/chat.vue
@@ -10,4 +10,4 @@
\ No newline at end of file
+
diff --git a/app/pages/index.vue b/app/pages/index.vue
index a27fa98..c22067c 100644
--- a/app/pages/index.vue
+++ b/app/pages/index.vue
@@ -3,21 +3,25 @@ const { locale } = useI18n()
useSeoMeta({
title: 'Arthur Danjou - AI enjoyer and Maths student',
- description: 'Developer enjoying Artificial Intelligence and Machine Learning. Mathematics Student at Paris Dauphine-PSL University specialised in Statistics',
+ description: 'Developer enjoying Artificial Intelligence and Machine Learning. Mathematics Student at Paris Dauphine-PSL University specialised in Statistics'
})
const { data: page } = await useAsyncData(`/home/${locale.value}`, () => {
return queryCollection('main').path(`/home/${locale.value}`).first()
}, {
- watch: [locale],
+ watch: [locale]
})