diff --git a/app/pages/[slug]/page.tsx b/app/pages/[slug]/page.tsx
index 83ee79b..b5ace03 100644
--- a/app/pages/[slug]/page.tsx
+++ b/app/pages/[slug]/page.tsx
@@ -1,7 +1,11 @@
+import Link from 'next/link';
import { notFound } from 'next/navigation';
import type { Metadata } from 'next';
import { allPages } from 'contentlayer/generated';
import { getPageBySlug } from '@/lib/posts';
+import { siteConfig } from '@/lib/config';
+import { ReadingProgress } from '@/components/reading-progress';
+import { PostToc } from '@/components/post-toc';
export function generateStaticParams() {
return allPages.map((page) => ({
@@ -31,18 +35,65 @@ export default function StaticPage({ params }: Props) {
if (!page) return notFound();
return (
- {page.title}
- {page.feature_image && (
- // feature_image is stored as "../assets/xyz", serve from "/assets/xyz"
- // eslint-disable-next-line @next/next/no-img-element
-
- )}
-
-
+ {new Date(page.published_at).toLocaleDateString( + siteConfig.defaultLocale + )} +
+ )} +