This commit is contained in:
2026-05-14 09:53:22 +08:00
commit e0e8684f53
23 changed files with 2207 additions and 0 deletions

27
src/pages/ContactView.vue Normal file
View File

@@ -0,0 +1,27 @@
<template>
<main class="placeholder-page">
<p class="placeholder-kicker">
Static route
</p>
<h1>Contact</h1>
<p>
This placeholder verifies that the contact page is rendered as a static
route by Vite SSG.
</p>
<a href="/">Back home</a>
</main>
</template>
<script setup lang="ts">
import { useHead } from '@unhead/vue'
useHead({
title: 'Contact | test-ssg',
meta: [
{
name: 'description',
content: 'Contact page placeholder for the Vite SSG test site.',
},
],
})
</script>