feat: about page and better config

This commit is contained in:
2026-04-26 22:35:14 +02:00
parent a5b24dc9bf
commit 722548118a
14 changed files with 80 additions and 49 deletions
+2 -1
View File
@@ -1,11 +1,12 @@
<script setup lang="ts">
import { BASE_URL, TITLE, RSS_LINK } from '@lib/config'
import { BASE_URL, TITLE, RSS_LINK, ABOUT_LINK } from '@lib/config'
</script>
<template>
<nav>
<RouterLink to="/" class="nav-title"><span v-html="TITLE"></span></RouterLink>
<span class="nav-items">
<RouterLink to="/about/"><span v-html="ABOUT_LINK"></span></RouterLink>
<a :href="BASE_URL + 'atom.xml'" v-html="RSS_LINK"></a>
</span>
</nav>