Files
artsite/app/pages/index.vue
2024-07-08 01:08:55 +02:00

16 lines
512 B
Vue

<template>
<main class="!max-w-none prose dark:prose-invert">
<ContentDoc :path="`/home/${locale}`" />
</main>
</template>
<script lang="ts" setup>
const { locale } = useI18n()
useSeoMeta({
title: 'Arthur Danjou • Mathematics Lover and IA Enthusiast',
titleTemplate: '%s',
description: 'I\'m Arthur, a Mathematics lover and IA enthusiast. I\'m currently studying at the University of Paris-Saclay. I\'m passionate about Mathematics, Computer Science, and Artificial Intelligence.'
})
</script>