重构文件结构,调整 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,19 @@
import BreadCrumb from '@/components/bread-crumb'
import Wrap from '@/components/wrap'
import Purchase from '@/components/composites/purchase'
export type ProductPageProps = {}
export default function ProductPage(props: ProductPageProps) {
return (
<main className={`mt-20`}>
<Wrap className="flex flex-col py-8 gap-4">
<BreadCrumb items={[
{label: '产品中心', href: '/product'},
]}/>
<Purchase/>
</Wrap>
</main>
)
}