Skip to content

Commit

Permalink
blog safak#3
Browse files Browse the repository at this point in the history
  • Loading branch information
autarkist committed Feb 1, 2024
1 parent a200312 commit 1af3f88
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 3 deletions.
1 change: 1 addition & 0 deletions src/app/blog/blog.module.css
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
.container{}
14 changes: 12 additions & 2 deletions src/app/blog/page.jsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
import PostCard from "@/components/postCard/postCard";
import styles from "./blog.module.css";

const BlogPage = () => {
return <div>Blog Page</div>;
return (
<div className={styles.container}>
<PostCard />
<PostCard />
<PostCard />
<PostCard />
</div>
);
};

export default BlogPage;
export default BlogPage;
2 changes: 1 addition & 1 deletion src/components/postCard/postCard.jsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
const PostCard = () => {
return <div>PostCard</div>;
return <div className={}>PostCard</div>;
};

export default PostCard;

0 comments on commit 1af3f88

Please sign in to comment.