Skip to content

Commit 03166a4

Browse files
authored
Merge pull request #142 from juuhye/feat/QA1-20
feat(QA1-20): QA1-20, QA1-25 수정
2 parents 6247ae3 + 63e2aed commit 03166a4

4 files changed

Lines changed: 41 additions & 80 deletions

File tree

src/features/navigation/model/navItems.ts

Lines changed: 37 additions & 35 deletions
Original file line numberDiff line numberDiff line change
@@ -39,39 +39,41 @@ export const NAV_ITEMS: NavGroup[] = [
3939
},
4040
],
4141
},
42-
{
43-
id: 3,
44-
group: '비즈니스 전략',
45-
items: [
46-
{
47-
title: '콘텐츠 전략',
48-
icon: 'resing',
49-
url: '',
50-
requiredPlan: 'GROWTH',
51-
},
52-
{
53-
title: '트렌드 매거진',
54-
icon: 'article',
55-
url: '',
56-
requiredPlan: 'GROWTH',
57-
},
58-
],
59-
},
60-
{
61-
id: 4,
62-
group: '협업',
63-
items: [
64-
{
65-
title: '협업 매칭',
66-
icon: 'message',
67-
url: '',
68-
requiredPlan: 'GROWTH',
69-
},
70-
],
71-
},
72-
{
73-
id: 5,
74-
group: '지원',
75-
items: [{ title: '고객센터', icon: 'question', url: '' }],
76-
},
42+
// 미사용 사이드 바 메뉴 임시 주석 처리
43+
44+
// {
45+
// id: 3,
46+
// group: '비즈니스 전략',
47+
// items: [
48+
// {
49+
// title: '콘텐츠 전략',
50+
// icon: 'resing',
51+
// url: '',
52+
// requiredPlan: 'GROWTH',
53+
// },
54+
// {
55+
// title: '트렌드 매거진',
56+
// icon: 'article',
57+
// url: '',
58+
// requiredPlan: 'GROWTH',
59+
// },
60+
// ],
61+
// },
62+
// {
63+
// id: 4,
64+
// group: '협업',
65+
// items: [
66+
// {
67+
// title: '협업 매칭',
68+
// icon: 'message',
69+
// url: '',
70+
// requiredPlan: 'GROWTH',
71+
// },
72+
// ],
73+
// },
74+
// {
75+
// id: 5,
76+
// group: '지원',
77+
// items: [{ title: '고객센터', icon: 'question', url: '' }],
78+
// },
7779
]

src/pages/home/ui/HomePage.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,10 +68,10 @@ export default function HomePage() {
6868
</Suspense>
6969
<HeroMain />
7070
<div className='snap-start'>
71-
<section className='grid grid-cols-1 gap-(--spacing-md) px-(--spacing-md) py-56 md:grid-cols-2 lg:grid-cols-3'>
71+
<section className='grid grid-cols-1 gap-md px-md py-56 md:grid-cols-2 lg:grid-cols-3'>
7272
<FeatureSection />
7373
</section>
74-
<section className='px-(--spacing-md) py-56'>
74+
<section className='px-md py-56'>
7575
<PlansSection />
7676
</section>
7777
</div>

src/widgets/layout/footer/model/footerNavItems.ts

Lines changed: 0 additions & 41 deletions
This file was deleted.

src/widgets/layout/footer/ui/FooterNav.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
import { FOOTER_NAV_ITEMS } from '../model/footerNavItems'
1+
import { NAV_ITEMS } from '@/features/navigation/model/navItems'
22

33
export const FooterNav = () => {
44
return (
55
<div className='flex gap-2xl py-sm'>
6-
{FOOTER_NAV_ITEMS.map((group) => (
6+
{NAV_ITEMS.map((group) => (
77
<div key={group.group}>
88
<div className='text-noto-label-md-thin text-text-and-icon-tertiary'>
99
{group.group}

0 commit comments

Comments
 (0)