From 957858de599effabea6e329370fd338dfa3080e2 Mon Sep 17 00:00:00 2001 From: "Wyatt J. Miller" Date: Mon, 30 Jun 2025 00:23:41 -0400 Subject: [PATCH] added post container --- frontend/components/Footer.tsx | 15 ++++++--------- frontend/components/PostBody.tsx | 11 +++++++---- frontend/components/PostHeader.tsx | 2 +- frontend/routes/_app.tsx | 2 +- 4 files changed, 15 insertions(+), 15 deletions(-) diff --git a/frontend/components/Footer.tsx b/frontend/components/Footer.tsx index 6ac63fe..efb8e5c 100644 --- a/frontend/components/Footer.tsx +++ b/frontend/components/Footer.tsx @@ -9,7 +9,7 @@ export default function Footer() {
diff --git a/frontend/components/PostBody.tsx b/frontend/components/PostBody.tsx index a8c9635..81bf1a8 100644 --- a/frontend/components/PostBody.tsx +++ b/frontend/components/PostBody.tsx @@ -2,10 +2,13 @@ import { Post } from "../types/index.ts"; export const PostBody = function PostBody({ post }: PostBodyOpts) { return ( -
+
+
+
); }; diff --git a/frontend/components/PostHeader.tsx b/frontend/components/PostHeader.tsx index cb34986..7c171f2 100644 --- a/frontend/components/PostHeader.tsx +++ b/frontend/components/PostHeader.tsx @@ -8,7 +8,7 @@ export const PostHeader = function PostHeader({ post }: PostHeaderOpts) { Wyatt J. Miller | {post.title} -
+
diff --git a/frontend/routes/_app.tsx b/frontend/routes/_app.tsx index 2c807c2..fbe63ba 100644 --- a/frontend/routes/_app.tsx +++ b/frontend/routes/_app.tsx @@ -8,7 +8,7 @@ export default function App({ Component }: PageProps) { frontend - +