产品和提取页面

This commit is contained in:
2025-03-14 12:40:51 +08:00
parent e1ca9bfff0
commit c0f367954d
30 changed files with 2449 additions and 280 deletions

View File

@@ -0,0 +1,19 @@
import BreadCrumb from '@/components/bread-crumb'
import Wrap from '@/components/wrap'
import FormSection from '@/app/(root)/collect/form-section'
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'},
]}/>
<h2 className={`text-3xl text-center`}> IP</h2>
<FormSection/>
</Wrap>
</main>
)
}