diff --git a/app/components/Body.tsx b/app/components/Body.tsx index fcd0095..f9720e4 100644 --- a/app/components/Body.tsx +++ b/app/components/Body.tsx @@ -1,6 +1,6 @@ export function Body({ children }: React.PropsWithChildren) { return ( -
+ {children} ); diff --git a/app/components/Title.tsx b/app/components/Title.tsx index 43b1f42..af7db49 100644 --- a/app/components/Title.tsx +++ b/app/components/Title.tsx @@ -1,6 +1,6 @@ export function Title({ children }: React.PropsWithChildren) { return ( -
diff --git a/app/routes/blog._index/Post.tsx b/app/routes/blog._index/Post.tsx
index c487729..3a83d7d 100644
--- a/app/routes/blog._index/Post.tsx
+++ b/app/routes/blog._index/Post.tsx
@@ -11,8 +11,8 @@ type PostProps = {
export function Post({ title, description, filename, published }: PostProps) {
return (