Files
NixWeb-homepage/app/pages/contact.vue
T
2025-09-21 19:59:04 +07:00

28 lines
598 B
Vue
Executable File

<template>
<main>
<article class="article">
<section class="hero-section">
<div class="container">
<img></img>
<h2 class="text-3xl ">contact page</h2>
</div>
</section>
<section class="container">
</section>
</article>
</main>
</template>
<script setup>
const config = useRuntimeConfig();
const baseUrl = config.public.baseUrl
useHead({
title: '*nix in Thailand',
titleTemplate: '%s',
meta: [
{ property: 'og:type', content: 'website' }
]
})
</script>