fixes
This commit is contained in:
@@ -18,7 +18,7 @@ export default function Blog() {
|
||||
return (
|
||||
<>
|
||||
<Title>Here I blog about whatever get my attention</Title>
|
||||
<div className="flex flex-col items-center space-y-5">
|
||||
<div className="mt-5 flex flex-col items-center space-y-5">
|
||||
{posts.map((post) => (
|
||||
<PostPreview {...post} key={post.title} />
|
||||
))}
|
||||
|
@@ -24,7 +24,7 @@ export default function BlogLayout() {
|
||||
const { handle } = useMatch();
|
||||
|
||||
return (
|
||||
<div className="space-y-6">
|
||||
<div className="space-y-6 px-2">
|
||||
<LinkWrapper>
|
||||
<Link to={handle.to}>{handle.text}</Link>
|
||||
</LinkWrapper>
|
||||
|
Reference in New Issue
Block a user