Skip to content

Commit cbf145b

Browse files
committed
feat: devlog 주석처리
1 parent cddedd7 commit cbf145b

2 files changed

Lines changed: 7 additions & 6 deletions

File tree

src/constants.ts

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
export const koreanTagNames: Record<string, string> = {
2-
"blog-analytics": "블로그 분석",
2+
"blog-analytics": "블로그 Analytics",
33
"computer-science": "컴퓨터 공학",
4-
"design-system": "디자인 시스템",
4+
"design-system": "디자인시스템",
55
geultto: "글또",
66
html: "HTML",
77
javascript: "JavaScript",
8-
"please-buy-the-blog": "블로그는 사드세요 시리즈",
8+
"please-buy-the-blog": "블로그는 사드세요",
99
productivity: "생산성",
1010
retrospects: "회고",
1111
web: "웹",
@@ -15,6 +15,7 @@ export const koreanTagNames: Record<string, string> = {
1515
plan: "계획",
1616
"asset-town": "에셋타운",
1717
thought: "단상",
18+
figma: "피그마",
1819
};
1920

2021
export const ALL_POSTS_TAG_NAME = "all posts";

src/templates/AllPostPage.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import MainLayout from "../components/MainLayout";
88
import Pagenation from "../components/Pagenation";
99
import PostGrid from "../components/PostGrid";
1010
import Profile from "../components/Profile";
11-
import SideProjectDevlogPostSection from "../components/SideProjectDevlogPostSection";
11+
// import SideProjectDevlogPostSection from "../components/SideProjectDevlogPostSection";
1212
import Tags from "../components/Tags";
1313
import { 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

Comments
 (0)