fix: 컴포넌트 종류 수정
This commit is contained in:
parent
7578965300
commit
09cfbab009
@ -1,14 +1,12 @@
|
||||
'use client'
|
||||
|
||||
import Hero from '@/components/Hero'
|
||||
import Archive from '@/components/community/Archive'
|
||||
|
||||
export default function CommunityArchivePage() {
|
||||
return (
|
||||
<>
|
||||
<Hero title="자료 다운로드"/>
|
||||
<Hero title="자료 다운로드" />
|
||||
<div className="container flex flex-wrap items-center justify-between mx-auto p-4 m-4 border">
|
||||
<Archive/>
|
||||
<Archive />
|
||||
</div>
|
||||
</>
|
||||
)
|
||||
|
||||
@ -1,14 +1,12 @@
|
||||
'use client'
|
||||
|
||||
import Hero from '@/components/Hero'
|
||||
import Faq from '@/components/community/Faq'
|
||||
|
||||
export default function CommunityFaqPage() {
|
||||
return (
|
||||
<>
|
||||
<Hero title="FAQ"/>
|
||||
<Hero title="FAQ" />
|
||||
<div className="container flex flex-wrap items-center justify-between mx-auto p-4 m-4 border">
|
||||
<Faq/>
|
||||
<Faq />
|
||||
</div>
|
||||
</>
|
||||
)
|
||||
|
||||
@ -1,14 +1,12 @@
|
||||
'use client'
|
||||
|
||||
import Hero from '@/components/Hero'
|
||||
import Notice from '@/components/community/Notice'
|
||||
|
||||
export default function CommunityNoticePage() {
|
||||
return (
|
||||
<>
|
||||
<Hero title="공지사항"/>
|
||||
<Hero title="공지사항" />
|
||||
<div className="container flex flex-wrap items-center justify-between mx-auto p-4 m-4 border">
|
||||
<Notice/>
|
||||
<Notice />
|
||||
</div>
|
||||
</>
|
||||
)
|
||||
|
||||
@ -1,14 +1,12 @@
|
||||
'use client'
|
||||
|
||||
import Hero from '@/components/Hero'
|
||||
import Plan from '@/components/management/Plan'
|
||||
|
||||
export default function ManagementPlanPage() {
|
||||
return (
|
||||
<>
|
||||
<Hero title="도면관리"/>
|
||||
<Hero title="도면관리" />
|
||||
<div className="container flex flex-wrap items-center justify-between mx-auto p-4 m-4 border">
|
||||
<Plan/>
|
||||
<Plan />
|
||||
</div>
|
||||
</>
|
||||
)
|
||||
|
||||
@ -1,5 +1,3 @@
|
||||
'use client'
|
||||
|
||||
import Hero from '@/components/Hero'
|
||||
import Stuff from '@/components/management/Stuff'
|
||||
|
||||
@ -8,7 +6,7 @@ export default function ManagementStuffPage() {
|
||||
<>
|
||||
<Hero title="물건관리" />
|
||||
<div className="container flex flex-wrap items-center justify-between mx-auto p-4 m-4 border">
|
||||
<Stuff/>
|
||||
<Stuff />
|
||||
</div>
|
||||
</>
|
||||
)
|
||||
|
||||
@ -1,14 +1,12 @@
|
||||
'use client'
|
||||
|
||||
import Hero from '@/components/Hero'
|
||||
import Company from '@/components/master/Company'
|
||||
|
||||
export default function MasterCompanyPage() {
|
||||
return (
|
||||
<>
|
||||
<Hero title="회사정보 조회"/>
|
||||
<Hero title="회사정보 조회" />
|
||||
<div className="container flex flex-wrap items-center justify-between mx-auto p-4 m-4 border">
|
||||
<Company/>
|
||||
<Company />
|
||||
</div>
|
||||
</>
|
||||
)
|
||||
|
||||
@ -1,5 +1,3 @@
|
||||
'use client'
|
||||
|
||||
import Hero from '@/components/Hero'
|
||||
import Price from '@/components/master/Price'
|
||||
|
||||
|
||||
@ -1,5 +1,3 @@
|
||||
'use client'
|
||||
|
||||
import Hero from '@/components/Hero'
|
||||
import Roof from '@/components/Roof'
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user