Website is done, writing posts now

This commit is contained in:
Joshua Higgins
2025-05-26 22:33:44 -04:00
parent 7eac18bbc3
commit bed36c8d7c
24 changed files with 162 additions and 11 deletions

View File

@@ -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">