mirror of
https://github.com/ArthurDanjou/artsite.git
synced 2026-01-21 06:23:28 +01:00
11 lines
212 B
Vue
11 lines
212 B
Vue
<template>
|
|
<main class="!max-w-none prose dark:prose-invert">
|
|
<ContentDoc :path="`/home/${locale}`" />
|
|
<HomeMap />
|
|
</main>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
const { locale } = useI18n()
|
|
</script>
|