Merge branch 'dev' into dev-yj

This commit is contained in:
yjnoh 2025-02-25 10:06:10 +09:00
commit c66be448b9
8 changed files with 0 additions and 74 deletions

View File

@ -1,4 +1,3 @@
import Hero from '@/components/Hero'
import Archive from '@/components/community/Archive'
export default async function CommunityArchivePage() {

View File

@ -1,13 +0,0 @@
import Hero from '@/components/Hero'
import InitSettingsModal from '@/components/InitSettingsModal'
export default async function InitSettingsModalPage() {
return (
<>
<Hero title="Basic Settings" />
<div className="flex flex-col justify-center my-8">
<InitSettingsModal />
</div>
</>
)
}

View File

@ -1,13 +0,0 @@
import Hero from '@/components/Hero'
import Plan from '@/components/management/Plan'
export default async 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

@ -1,13 +0,0 @@
import Hero from '@/components/Hero'
import Company from '@/components/master/Company'
export default async function MasterCompanyPage() {
return (
<>
<Hero title="회사정보 조회" />
<div className="container flex flex-wrap items-center justify-between mx-auto p-4 m-4 border">
<Company />
</div>
</>
)
}

View File

@ -1,13 +0,0 @@
import Hero from '@/components/Hero'
import Price from '@/components/master/Price'
export default async function MasterPricePage() {
return (
<>
<Hero title="가격 마스터 조회" />
<div className="container flex flex-wrap items-center justify-between mx-auto p-4 m-4 border">
<Price />
</div>
</>
)
}

View File

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

View File

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

View File

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