stupid revamp

This commit is contained in:
2025-08-25 21:13:56 +07:00
parent 136c513630
commit 82720e507a
+33 -33
View File
@@ -1,34 +1,34 @@
<template> <template>
<main> <main>
<article class="article"> <article class="article">
<section class="web-hero" aria-labelledby="hero" aria-describedby="what-does-he-do?"> <section class="web-hero web-hero-bg" aria-labelledby="hero" aria-describedby="what-does-he-do?">
<h1 id="hero" class="font-hero">Terminal</h1> <h1 id="hero" class="font-hero">Terminal</h1>
<p id="what-does-he-do?" class="font-hero-desc">This will be a emulator for website visitor (simulator)</p> <p id="what-does-he-do?" class="font-hero-desc">This will be a emulator for website visitor (simulator)</p>
</section> </section>
<section class="web-section" aria-labelledby="about-me" aria-describedby="about-me-paragraph-1"> <section class="web-section" aria-labelledby="about-me" aria-describedby="about-me-paragraph-1">
<h2 class="web-title" id="about-me">hi</h2> <h2 class="web-title" id="about-me">hi</h2>
<p id="about-me-paragraph-1">imagine a linux terminal where you can list files or cat files i will do it here not now but later thx okay bye bye</p> <p id="about-me-paragraph-1">imagine a linux terminal where you can list files or cat files i will do it here not now but later thx okay bye bye</p>
</section> </section>
<section class="web-section"> <section class="web-section">
<p>additional info: robots are not allowed here temporary for whatever reason</p> <p>additional info: robots are not allowed here temporary for whatever reason</p>
</section> </section>
</article> </article>
</main> </main>
</template> </template>
<script setup> <script setup>
const config = useRuntimeConfig(); const config = useRuntimeConfig();
const TITLE = "Terminal" const TITLE = "Terminal"
const DESC = "Terminal Emulator Simulator on thawia.ng by Techit Thawiang" const DESC = "Terminal Emulator Simulator on thawia.ng by Techit Thawiang"
const baseUrl = config.public.baseUrl const baseUrl = config.public.baseUrl
useHead({ useHead({
title: TITLE, title: TITLE,
meta: [ meta: [
{ name: 'description', content: DESC }, { name: 'description', content: DESC },
{ property: 'og:title', content: TITLE }, { property: 'og:title', content: TITLE },
{ property: 'og:description', content: DESC }, { property: 'og:description', content: DESC },
{ property: 'og:type', content: 'website' } { property: 'og:type', content: 'website' }
] ]
}) })
</script> </script>