docs: 📝 Write article about Versia 0.5

This commit is contained in:
Jesse Wierzbinski 2025-01-17 17:27:22 +01:00
parent d97efab9f3
commit 7589afd7b7
No known key found for this signature in database
16 changed files with 291 additions and 50 deletions

View file

@ -1,7 +1,7 @@
<template>
<div v-if="post" class="mx-auto max-w-3xl py-24 sm:py-32 px-6 lg:px-8 flex flex-col items-center gap-10">
<Title v-if="post.title" :created_at="post.created_at" :title="post.title" />
<Image v-if="post.image" :image="post.image.url" :width="post.image.width" :height="post.image.height" />
<Image v-if="post.image" :image="post.image.url" :width="post.image.width" :height="post.image.height" :caption="post.image.credit" />
<Content :body="body" />
</div>
</template>

View file

@ -1,7 +1,9 @@
<template>
<NuxtLink href="/articles/test/test-file" class="text-gray-200 underline">nyaa</NuxtLink>
<span></span>
</template>
<script lang="ts" setup>
import { navigateTo } from "#imports";
navigateTo("/articles/2025/01/17/versia-05");
</script>