Files
arcticnewone/app/pages/contact.vue
T

14 lines
295 B
Vue

<template>
<div class="page-container flex min-h-screen items-center justify-center pt-32">
<h1 class="text-4xl font-bold">Contact Page</h1>
</div>
</template>
<script setup lang="ts">
// Contact 页面
useSeoMeta({
title: 'Contact',
description: '联系我们页面',
})
</script>