Testing webhook deploy
This commit is contained in:
parent
2e48ad1ba2
commit
f762a88d95
1 changed files with 4 additions and 1 deletions
|
|
@ -1,5 +1,6 @@
|
||||||
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'
|
||||||
|
|
||||||
|
|
@ -42,7 +43,9 @@ export default async function CategoryPage({ params }: CategoryPageProps) {
|
||||||
return (
|
return (
|
||||||
<main>
|
<main>
|
||||||
<h1>Category not found</h1>
|
<h1>Category not found</h1>
|
||||||
<Link href="/categories">Back to categories</Link>
|
<Link href="/categories">
|
||||||
|
Back to categories <Folder />
|
||||||
|
</Link>
|
||||||
</main>
|
</main>
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue