- 메뉴 라우터 추가
This commit is contained in:
parent
bfa51bd24d
commit
af7ed4f2f4
15
src/app/community/archive/page.jsx
Normal file
15
src/app/community/archive/page.jsx
Normal file
@ -0,0 +1,15 @@
|
||||
'use client'
|
||||
|
||||
import Hero from '@/components/Hero'
|
||||
import Archive from '@/components/community/Archive'
|
||||
|
||||
export default function IntroPage() {
|
||||
return (
|
||||
<>
|
||||
<Hero title="자료 다운로드"/>
|
||||
<div className="container flex flex-wrap items-center justify-between mx-auto p-4 m-4 border">
|
||||
<Archive/>
|
||||
</div>
|
||||
</>
|
||||
)
|
||||
}
|
||||
15
src/app/community/faq/page.jsx
Normal file
15
src/app/community/faq/page.jsx
Normal file
@ -0,0 +1,15 @@
|
||||
'use client'
|
||||
|
||||
import Hero from '@/components/Hero'
|
||||
import Faq from '@/components/community/Faq'
|
||||
|
||||
export default function IntroPage() {
|
||||
return (
|
||||
<>
|
||||
<Hero title="FAQ"/>
|
||||
<div className="container flex flex-wrap items-center justify-between mx-auto p-4 m-4 border">
|
||||
<Faq/>
|
||||
</div>
|
||||
</>
|
||||
)
|
||||
}
|
||||
16
src/app/community/notice/page.jsx
Normal file
16
src/app/community/notice/page.jsx
Normal file
@ -0,0 +1,16 @@
|
||||
|
||||
'use client'
|
||||
|
||||
import Hero from '@/components/Hero'
|
||||
import Notice from '@/components/community/Notice'
|
||||
|
||||
export default function IntroPage() {
|
||||
return (
|
||||
<>
|
||||
<Hero title="공지사항"/>
|
||||
<div className="container flex flex-wrap items-center justify-between mx-auto p-4 m-4 border">
|
||||
<Notice/>
|
||||
</div>
|
||||
</>
|
||||
)
|
||||
}
|
||||
15
src/app/management/plan/page.jsx
Normal file
15
src/app/management/plan/page.jsx
Normal file
@ -0,0 +1,15 @@
|
||||
'use client'
|
||||
|
||||
import Hero from '@/components/Hero'
|
||||
import Plan from '@/components/management/Plan'
|
||||
|
||||
export default function ManagementPlanPage() {
|
||||
return (
|
||||
<>
|
||||
<Hero title="도면관리"/>
|
||||
<div className="container flex flex-wrap items-center justify-between mx-auto p-4 m-4 border">
|
||||
<Plan/>
|
||||
</div>
|
||||
</>
|
||||
)
|
||||
}
|
||||
15
src/app/management/stuff/page.jsx
Normal file
15
src/app/management/stuff/page.jsx
Normal file
@ -0,0 +1,15 @@
|
||||
'use client'
|
||||
|
||||
import Hero from '@/components/Hero'
|
||||
import Stuff from '@/components/management/Stuff'
|
||||
|
||||
export default function ManagementStuffPage() {
|
||||
return (
|
||||
<>
|
||||
<Hero title="물건관리" />
|
||||
<div className="container flex flex-wrap items-center justify-between mx-auto p-4 m-4 border">
|
||||
<Stuff/>
|
||||
</div>
|
||||
</>
|
||||
)
|
||||
}
|
||||
15
src/app/master/company/page.jsx
Normal file
15
src/app/master/company/page.jsx
Normal file
@ -0,0 +1,15 @@
|
||||
'use client'
|
||||
|
||||
import Hero from '@/components/Hero'
|
||||
import Company from '@/components/master/Company'
|
||||
|
||||
export default function IntroPage() {
|
||||
return (
|
||||
<>
|
||||
<Hero title="회사정보 조회"/>
|
||||
<div className="container flex flex-wrap items-center justify-between mx-auto p-4 m-4 border">
|
||||
<Company/>
|
||||
</div>
|
||||
</>
|
||||
)
|
||||
}
|
||||
16
src/app/master/price/page.jsx
Normal file
16
src/app/master/price/page.jsx
Normal file
@ -0,0 +1,16 @@
|
||||
|
||||
'use client'
|
||||
|
||||
import Hero from '@/components/Hero'
|
||||
import Price from '@/components/master/Price'
|
||||
|
||||
export default function IntroPage() {
|
||||
return (
|
||||
<>
|
||||
<Hero title="가격 마스터 조회" />
|
||||
<div className="container flex flex-wrap items-center justify-between mx-auto p-4 m-4 border">
|
||||
<Price />
|
||||
</div>
|
||||
</>
|
||||
)
|
||||
}
|
||||
7
src/components/community/Archive.jsx
Normal file
7
src/components/community/Archive.jsx
Normal file
@ -0,0 +1,7 @@
|
||||
export default function Archive() {
|
||||
return (
|
||||
<>
|
||||
<h1>Community Archive</h1>
|
||||
</>
|
||||
)
|
||||
}
|
||||
7
src/components/community/Faq.jsx
Normal file
7
src/components/community/Faq.jsx
Normal file
@ -0,0 +1,7 @@
|
||||
export default function Faq() {
|
||||
return (
|
||||
<>
|
||||
<h1>Community FAQ</h1>
|
||||
</>
|
||||
)
|
||||
}
|
||||
7
src/components/community/Notice.jsx
Normal file
7
src/components/community/Notice.jsx
Normal file
@ -0,0 +1,7 @@
|
||||
export default function Notice() {
|
||||
return (
|
||||
<>
|
||||
<h1>Community Notice</h1>
|
||||
</>
|
||||
)
|
||||
}
|
||||
7
src/components/management/Plan.jsx
Normal file
7
src/components/management/Plan.jsx
Normal file
@ -0,0 +1,7 @@
|
||||
export default function Plan() {
|
||||
return (
|
||||
<>
|
||||
<h1>Management Plan</h1>
|
||||
</>
|
||||
)
|
||||
}
|
||||
7
src/components/management/Stuff.jsx
Normal file
7
src/components/management/Stuff.jsx
Normal file
@ -0,0 +1,7 @@
|
||||
export default function Stuff() {
|
||||
return (
|
||||
<>
|
||||
<h1>Management Stuff</h1>
|
||||
</>
|
||||
)
|
||||
}
|
||||
7
src/components/master/Company.jsx
Normal file
7
src/components/master/Company.jsx
Normal file
@ -0,0 +1,7 @@
|
||||
export default function Company() {
|
||||
return (
|
||||
<>
|
||||
<h1>Master Company</h1>
|
||||
</>
|
||||
)
|
||||
}
|
||||
7
src/components/master/Price.jsx
Normal file
7
src/components/master/Price.jsx
Normal file
@ -0,0 +1,7 @@
|
||||
export default function Price() {
|
||||
return (
|
||||
<>
|
||||
<h1>Master Price</h1>
|
||||
</>
|
||||
)
|
||||
}
|
||||
Loading…
x
Reference in New Issue
Block a user