重构文件结构,调整 Header 和 Footer 组件的导入路径

This commit is contained in:
2025-04-25 09:19:31 +08:00
parent 28c17a2be6
commit 8b742bdc34
12 changed files with 7 additions and 7 deletions

View File

@@ -0,0 +1,18 @@
import BreadCrumb from '@/components/bread-crumb'
import Wrap from '@/components/wrap'
import Extract from '@/components/composites/extract'
export type CollectPageProps = {}
export default function CollectPage(props: CollectPageProps) {
return (
<main className={`mt-20 flex flex-col gap-4`}>
<Wrap className="flex flex-col py-8 gap-8">
<BreadCrumb items={[
{label: 'IP 提取', href: '/collect'},
]}/>
<Extract/>
</Wrap>
</main>
)
}