mirror of
https://github.com/ArthurDanjou/artsite.git
synced 2026-01-21 10:23:21 +01:00
25 lines
714 B
Vue
25 lines
714 B
Vue
<script lang="ts" setup>
|
|
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',
|
|
})
|
|
|
|
const { data: page } = await useAsyncData(`/home/${locale.value}`, () => {
|
|
return queryCollection('main').path(`/home/${locale.value}`).first()
|
|
}, {
|
|
watch: [locale],
|
|
})
|
|
</script>
|
|
|
|
<template>
|
|
<main class="!max-w-none prose dark:prose-invert">
|
|
<ContentRenderer v-if="page" :value="page" class="mt-8 md:mt-16" />
|
|
<HomeStats />
|
|
<HomeActivity />
|
|
<HomeQuote />
|
|
<HomeCatchPhrase />
|
|
</main>
|
|
</template>
|