add: SEO for articles

SEO and SchemaORg for articles
This commit is contained in:
webfussel 2025-06-14 10:23:46 +02:00
parent f1cb4048a4
commit d6859cdaad
22 changed files with 198 additions and 125 deletions

View file

@ -10,15 +10,11 @@
</header>
<main>
<p>
{{ generatePlainText(excerpt.value).at(0)?.text ?? '' }}
{{ description }}
</p>
</main>
<footer>
<BlogAuthor :name="author.name" :image="author.image" :date="date"/>
<div class="tags">
<span>tags</span>
<span class="tag" v-for="tag in tags">{{ tag }}</span>
</div>
<BlogAuthor :name="author.name" :date="date"/>
</footer>
</div>
</NuxtLink>
@ -26,20 +22,16 @@
<script setup lang="ts">
import type { Category } from './types'
import type { MinimalNode } from '@nuxt/content'
type Props = {
title: string
description: string
image: string
date: string
excerpt: { type: string, value: MinimalNode[], children?: any }
link: string
tags: string[]
category: Category
author: {
name: string
image: string
}
}