20 lines
567 B
TypeScript
20 lines
567 B
TypeScript
|
|
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>
|
||
|
|
)
|
||
|
|
}
|