Testing webhook deploy

This commit is contained in:
HangerThem 2026-08-03 16:25:35 +02:00
parent 2e48ad1ba2
commit f762a88d95

View file

@ -1,5 +1,6 @@
import { metadata } from '@/app/metadata'
import { getAllCategories, getCategoryBySlug, getPostsByCategory } from '@/lib/categories'
import { Folder } from 'lucide-react'
import type { Metadata } from 'next'
import Link from 'next/link'
@ -42,7 +43,9 @@ export default async function CategoryPage({ params }: CategoryPageProps) {
return (
<main>
<h1>Category not found</h1>
<Link href="/categories">Back to categories</Link>
<Link href="/categories">
Back to categories <Folder />
</Link>
</main>
)
}