import * as React from 'react';
import { ResponsiveGrid } from '@alifd/next';
import PageHeader from '@/components/PageHeader';
import AdvancedDetailHead from './components/AdvancedDetailHead';

const { Cell } = ResponsiveGrid;

const Advanced = () => {
  return (
    <ResponsiveGrid>
      <Cell colSpan={12}>
        <PageHeader
          breadcrumbs={[
            {
              name: '详情页面',
            },
            {
              name: '高级详情',
            },
          ]}
        />
      </Cell>

      <Cell colSpan={12}>
        <AdvancedDetailHead />
      </Cell>
    </ResponsiveGrid>
  );
};

export default Advanced;
