testing peroxy

This commit is contained in:
rei
2022-12-29 01:08:46 +01:00
parent e46339c7a7
commit 437a79877e
4 changed files with 4 additions and 4 deletions

View File

@@ -41,7 +41,7 @@ const BlogCard = ({ blog, slug }: { blog: BasicBlogProps; slug: string }) => {
const Blog = ({ posts }: { posts: BlogPost[] }) => {
return (
<MainLayout>
<h1 className="text-3xl font-bold mt-10">Blog</h1>
<h1 className="text-3xl font-bold xl:mt-10">Blog</h1>
<div className="w-full h-0.5 bg-white/50 my-4 rounded-full" />
<div className="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-4">
{posts.map((post, index) => (