diff --git a/src/root.tsx b/src/root.tsx index 8bf0e0e..3f02f29 100644 --- a/src/root.tsx +++ b/src/root.tsx @@ -4,7 +4,7 @@ import "./index.css"; export function Layout({ children }: { children: React.ReactNode }) { return ( - + diff --git a/src/routes/blog._index.tsx b/src/routes/blog._index.tsx index 878de73..bd72eca 100644 --- a/src/routes/blog._index.tsx +++ b/src/routes/blog._index.tsx @@ -74,56 +74,64 @@ export default function BlogIndex({ loaderData }: Route.ComponentProps) { })} > {posts.map((post) => ( -
  • - - - - - - {post.frontmatter.title} - - - {post.frontmatter.description ? ( - - {post.frontmatter.description} - - ) : null} - - + + + + - + {post.frontmatter.title} + + + {post.frontmatter.description ? ( + + {post.frontmatter.description} + + ) : null} + + + - - - - - - - + + + + + +
  • ))}