2025-06-14 21:43:21 +08:00

10 lines
255 B
Vue

<script setup lang="ts">
const { t } = useI18n();
</script>
<template>
<div class="justify-center align-center text-center">
<h1 class="text-2xl text-bold">{{ t("pages.tos.title") }}</h1>
<p>{{ t("pages.tos.content") }}</p>
</div>
</template>