- 메뉴 라우터 추가

This commit is contained in:
minsik 2024-08-01 13:37:16 +09:00
parent bfa51bd24d
commit af7ed4f2f4
14 changed files with 156 additions and 0 deletions

View 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>
</>
)
}

View 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>
</>
)
}

View 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>
</>
)
}

View 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>
</>
)
}

View 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>
</>
)
}

View 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>
</>
)
}

View 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>
</>
)
}

View File

@ -0,0 +1,7 @@
export default function Archive() {
return (
<>
<h1>Community Archive</h1>
</>
)
}

View File

@ -0,0 +1,7 @@
export default function Faq() {
return (
<>
<h1>Community FAQ</h1>
</>
)
}

View File

@ -0,0 +1,7 @@
export default function Notice() {
return (
<>
<h1>Community Notice</h1>
</>
)
}

View File

@ -0,0 +1,7 @@
export default function Plan() {
return (
<>
<h1>Management Plan</h1>
</>
)
}

View File

@ -0,0 +1,7 @@
export default function Stuff() {
return (
<>
<h1>Management Stuff</h1>
</>
)
}

View File

@ -0,0 +1,7 @@
export default function Company() {
return (
<>
<h1>Master Company</h1>
</>
)
}

View File

@ -0,0 +1,7 @@
export default function Price() {
return (
<>
<h1>Master Price</h1>
</>
)
}