Files
2025-10-05 15:17:32 +07:00

68 lines
3.9 KiB
Vue
Executable File

<template>
<main>
<article class="article">
<section class="hero-section">
<div class="container">
<img class="brace" width="100" src="/brace-smile.svg"></img>
<h1 id="home-hero-title" class="title">สวสด<br/>นดอนรบส *nix in Thailand สารสนเทศคอมพวเตอรกคนสามารถเขาถงได</h1>
<p id="home-hero-sub" class="subtitle">นทสำหรบการซกถาม ยเล และเอกสารสาระคอมพวเตอราง โดยทเนนระบบ UNIX และ Unix-like ไมาจะเป GNU, Linux, macOS, Android, ฯลฯ</p>
</div>
</section>
<section class="page-section">
<div class="container">
<section class="section-img">
<img width="100" src="/wiki-logo-sorlink.svg"></img>
</section>
<section class="section">
<h2 id="wiki" class="title">สารคอมพวเตอรเสร ()</h2>
<p id="wiki-desc">นยรวมความรซอฟตแวรและฮารดแวรคอมพวเตอร กคนสามารถสามารถแกไขได</p>
<UButton to="https://wiki.unix.in.th" label="ไปที่วิกิ"/>
</section>
</div>
</section>
<section class="page-section">
<div class="container">
<section class="section-img">
<img width="100" src="/forum-logo-people.svg"></img>
</section>
<section class="section">
<h2 class="title">ลานประชาคม</h2>
<p>นทสอบถาม อภปราย และคยเล เกยวกบซอฟตแวรและฮารดแวร UNIX และ Unix-like</p>
<UButton to="https://forum.unix.in.th" label="ไปที่ลานประชาคม"/>
</section>
</div>
</section>
<!-- <section class="page-section" :aria-labelledby="t('home.wiki.title').replace(/ /g, '_')" :aria-describedby="t('home.wiki.paragraph').replace(/ /g, '_')">
<div class="container">
<section class="section">
<h2 :id="t('home.wiki.title').replace(/ /g, '_')" class="title">{{ t('home.wiki.title') }}</h2>
<p :id="t('home.wiki.paragraph').replace(/ /g, '_')">{{ t('home.wiki.paragraph') }}</p>
<UButton to="https://wiki.unix.in.th" :label="t('home.wiki.go')"/>
</section>
</div>
</section>
<section class="page-section" :aria-labelledby="t('home.forum.title').replace(/ /g, '_')" :aria-describedby="t('home.forum.paragraph').replace(/ /g, '_')">
<div class="container">
<section class="section">
<h2 :id="t('home.forum.title').replace(/ /g, '_')" class="title">{{ t('home.forum.title') }}</h2>
<p :id="t('home.forum.paragraph').replace(/ /g, '_')">{{ t('home.forum.paragraph') }}</p>
<UButton to="https://forum.unix.in.th" :label="t('home.forum.go')"/>
</section>
</div>
</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>