Website is done, writing posts now
This commit is contained in:
@@ -4,6 +4,8 @@ import Link from "next/link"
|
||||
import Markdown from 'react-markdown'
|
||||
import { ArrowLeft } from "lucide-react"
|
||||
import Navbar from "@/components/navbar";
|
||||
import Image from "next/image";
|
||||
import RecordBox from "@/components/recordbox";
|
||||
|
||||
interface PostPageProps {
|
||||
params: Promise<{ slug: string }>
|
||||
@@ -20,6 +22,8 @@ export default async function PostPage({ params }: PostPageProps) {
|
||||
return (
|
||||
<div className="min-h-screen bg-black text-white font-mono">
|
||||
<Navbar />
|
||||
<RecordBox />
|
||||
|
||||
<title>{post.title}</title>
|
||||
<div className="container mx-auto px-4 py-20">
|
||||
<div className="max-w-4xl mx-auto">
|
||||
|
||||
Reference in New Issue
Block a user