Skip to content

Commit

Permalink
💄 update blog featured alignment
Browse files Browse the repository at this point in the history
  • Loading branch information
AntoineKM committed Aug 28, 2024
1 parent e459bd8 commit bce6cea
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 5 deletions.
3 changes: 2 additions & 1 deletion docs/components/Blog/Featured/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@ const Featured: React.FC = () => {
id={"header"}
maxW={"mobile"}
mx={"auto"}
py={"extraLarge"}
pt={"calc(60px - 1rem)"}
pb={"extraLarge"}
header
>
<Container align={"center"}>
Expand Down
6 changes: 2 additions & 4 deletions docs/pages/blog.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,6 @@ description: The latest updates and releases.
type: posts
---

import Featured from "@components/Blog/Featured";
import List from "@components/Blog/List";
import Blog from '../screens/Blog';

<Featured />
<List />
<Blog />
13 changes: 13 additions & 0 deletions docs/screens/Blog/index.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
import Featured from "@components/Blog/Featured";
import List from "@components/Blog/List";

const Blog: React.FC = () => {
return (
<>
<Featured />
<List />
</>
);
};

export default Blog;

0 comments on commit bce6cea

Please sign in to comment.