28 lines
598 B
Vue
Executable File
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> |