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