diff --git a/src/app/blog/[...slug]/page.tsx b/src/app/blog/[...slug]/page.tsx index 269f7f3..137823e 100644 --- a/src/app/blog/[...slug]/page.tsx +++ b/src/app/blog/[...slug]/page.tsx @@ -71,7 +71,7 @@ const BlogPage: React.FC = ({ params }: PageProps) => { notFound(); } - const formatDate = format(parseISO(blog.date), "do LLLL"); + const formatDate = format(parseISO(blog.date), "do LLLL yyyy"); const hashes = blog.hashTags ? `· #${blog.hashTags.join(" #")}` : ""; const description = `${formatDate} · ${blog.readTime} reading time ${hashes}`;