Files
2025-07-16 22:01:55 +02:00

16 lines
274 B
Vue

<template>
<origins />
</template>
<script setup lang='ts'>
import { useI18n } from '#i18n'
import { useHead } from '#imports'
import Origins from '../components/pages/origins/origin-page.vue'
const { t } = useI18n()
useHead({
title: t('origins.title'),
})
</script>