diff --git a/app/posts/[slug]/page.tsx b/app/posts/[slug]/page.tsx index 931abda..0c9f076 100644 --- a/app/posts/[slug]/page.tsx +++ b/app/posts/[slug]/page.tsx @@ -4,6 +4,7 @@ import { ShareLinks } from '@/components/post/ShareLinks' import { TableOfContents } from '@/components/post/TableOfContents' import { getAllPostSlugs, getNextAndPreviousPosts, getPostBySlug } from '@/lib/posts' import { slugify } from '@/utils/slug' +import { Pencil, SendHorizonal } from 'lucide-react' import type { Metadata } from 'next' import Link from 'next/link' @@ -53,9 +54,12 @@ export default async function Post({ params }: { params: Promise<{ slug: string )}

{meta.title}

-
+
- Posted + Posted + + +
- · + · {meta.updated && ( <>
- Updated + Updated + + +
- · + · )} {meta.readingTimeText}