@@ -8,7 +8,7 @@ import MainLayout from "../components/MainLayout";
88import Pagenation from "../components/Pagenation" ;
99import PostGrid from "../components/PostGrid" ;
1010import Profile from "../components/Profile" ;
11- import SideProjectDevlogPostSection from "../components/SideProjectDevlogPostSection" ;
11+ // import SideProjectDevlogPostSection from "../components/SideProjectDevlogPostSection";
1212import Tags from "../components/Tags" ;
1313import { ALL_POSTS_TAG_NAME , DOMAIN } from "../constants" ;
1414
@@ -98,7 +98,7 @@ export default function AllPostPageTemplate({ data }: AllPostPageTemplateProps)
9898 const currentPage = data . allMdx . pageInfo . currentPage ;
9999 const pageCount = data . allMdx . pageInfo . pageCount ;
100100 const featuredPosts = data . featuredPosts . nodes ;
101- const sideProjectDevlogPosts = data . sideProjectDevlogPosts . nodes ;
101+ // const sideProjectDevlogPosts = data.sideProjectDevlogPosts.nodes;
102102 return (
103103 < MainLayout >
104104 < Tags currentTag = { ALL_POSTS_TAG_NAME } />
@@ -111,7 +111,7 @@ export default function AllPostPageTemplate({ data }: AllPostPageTemplateProps)
111111 gap = { { base : "20px" , lg : "60px" } }
112112 >
113113 < FeaturedPostSection posts = { featuredPosts } />
114- < SideProjectDevlogPostSection posts = { sideProjectDevlogPosts } />
114+ { /* <SideProjectDevlogPostSection posts={sideProjectDevlogPosts} /> */ }
115115 </ Flex >
116116
117117 < PostGrid posts = { data . allMdx . nodes } />
0 commit comments