28 lines
546 B
Vue
28 lines
546 B
Vue
|
|
<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>
|