Revert back to state before deploy testing

This commit is contained in:
HangerThem 2026-08-03 16:32:53 +02:00
parent f762a88d95
commit 8ac4a85010

View file

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