quick commit, fix later
Deploy to GitHub Pages / build (push) Has been cancelled
Deploy to GitHub Pages / deploy (push) Has been cancelled

This commit is contained in:
2025-10-23 16:22:03 +07:00
parent 7dd8aaf9b8
commit c7d2eebbe9
6 changed files with 752 additions and 856 deletions
-19
View File
@@ -1,19 +0,0 @@
.about-me-photo-grid {
display: grid;
grid-template-columns: repeat(1, minmax(0, 1fr));
gap: calc(var(--ui-spacing)*1);
}
.about-me-photo-grid > img {
height: 100%;
object-fit: cover;
aspect-ratio: 16/9;
}
@media screen and (min-width: 768px) {
.about-me-photo-grid {
grid-template-columns: repeat(3, minmax(0, 1fr));
}
}
.text-accent {
color: var(--color-accent);
}
File diff suppressed because it is too large Load Diff
+26 -7
View File
@@ -1,17 +1,36 @@
<script setup lang="ts">
import WebThemeToggle from './web-theme-toggle.vue';
const currentYear = new Date().getFullYear();
</script>
<template>
<footer>
<div class="article article-footer">
<section class="web-section">
<p class="web-footer-notice">
Copyright &copy; Techit Thawiang 2025 (2568). All rights reserved.<br>
PGP/GPG Key: <code style="font-size: 12px;"><a href="https://files.thawia.ng/files/Techit Thawiang_0xE649CED321557334_public.asc">4116 33BE 1B4A 19D4 8D77 9ADE E649 CED3 2155 7334</a></code><br>
Powered by <a class="link" href="https://dailitation.xyz">dailitation.xyz</a>; Website is available under <a class="link" href="https://github.com/TechitWinner/web">GPL-3.0</a>.
</p>
<div class="web-footer-links-container-container">
<div class="web-footer-links-container">
<h3 class="web-footer-link-title">Site</h3>
<ul class="web-footer-links">
<li class="web-footer-link"><NuxtLink href="/posts">Posts</NuxtLink></li>
<li class="web-footer-link"><NuxtLink href="/projects">Projects</NuxtLink></li>
<li class="web-footer-link"><NuxtLink href="/about">About</NuxtLink></li>
<li class="web-footer-link"><NuxtLink href="/contact">Contact</NuxtLink></li>
<li class="web-footer-link"><NuxtLink href="/fonts">Fonts</NuxtLink></li>
<li class="web-footer-link"><NuxtLink href="/collections">Collections</NuxtLink></li>
</ul>
</div>
</div>
</section>
<section class="web-section">
<div>
<p class="web-footer-notice">
Techit Thawiang's Website
</p>
<p class="web-footer-notice">
Copyright &copy; Techit Thawiang {{ currentYear }} ({{ currentYear + 543 }}). All rights reserved.<br>
PGP/GPG Key: <code style="font-size: 12px;"><a href="https://files.thawia.ng/files/Techit Thawiang_0xE649CED321557334_public.asc">4116 33BE 1B4A 19D4 8D77 9ADE E649 CED3 2155 7334</a></code><br>
Powered by <a class="link" href="https://dailitation.xyz">dailitation.xyz</a>; Website is available under <a class="link" href="https://gitskette.dailitation.xyz/techit/web">GPL-3.0</a>.
</p>
</div>
</section>
</div>
</footer>