chore: clean up empty code change sections in the changes log

This commit is contained in:
Poyraz Avsever
2026-03-10 11:55:05 +03:00
parent e2b9f24d50
commit 4c0be0374c
6 changed files with 2377 additions and 17 deletions
+18
View File
@@ -0,0 +1,18 @@
import { notFound } from "next/navigation";
import { BlogDetailContent } from "@/components/blog-detail-content";
import { getBlogDetailBySlug } from "@/data/blog-detail";
type BlogDetailPageProps = {
params: Promise<{ slug: string }>;
};
export default async function BlogDetailPage({ params }: BlogDetailPageProps) {
const { slug } = await params;
const post = getBlogDetailBySlug(slug);
if (!post) {
notFound();
}
return <BlogDetailContent post={post} />;
}