Skip to content

Commit

Permalink
feat: intro 공통 컴포넌트로 교체
Browse files Browse the repository at this point in the history
  • Loading branch information
Jungjjeong committed Nov 26, 2024
1 parent 604e15a commit 3bc0ec2
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 29 deletions.
27 changes: 0 additions & 27 deletions src/features/Blog/BlogIntroSection.tsx

This file was deleted.

7 changes: 5 additions & 2 deletions src/pages/blog.tsx
Original file line number Diff line number Diff line change
@@ -1,14 +1,17 @@
import { SEO } from '~/components/SEO';
import { BlogContentSection } from '~/features/Blog/BlogContentSection';
import { BlogIntroSection } from '~/features/Blog/BlogIntroSection';
import { BlogSubscribeSection } from '~/features/Blog/BlogSubscribeSection';
import { IntroSection } from '~/features/Common/sections/IntroSection';

export default function blog() {
return (
<>
<SEO title="디프만 - Blog" />
<main>
<BlogIntroSection />
<IntroSection
defaultImgUrl="/images/16th/blog/blog.svg"
mobileImgUrl="/images/16th/blog/blog_m.svg"
/>
<BlogContentSection />
<BlogSubscribeSection />
</main>
Expand Down

0 comments on commit 3bc0ec2

Please sign in to comment.