import {Card, Row, Col, Divider} from 'antd' import { SafetyCertificateOutlined, FileTextOutlined, BookOutlined, SolutionOutlined, CalendarOutlined, NotificationOutlined, CompassOutlined, CustomerServiceOutlined, RightOutlined } from '@ant-design/icons' import React from 'react' import {Link} from "react-router-dom"; export default function ServiceGuide() { const guideItems = [ { icon: , label: '企业登记服务', }, { icon: , label: '人才政策申报', }, { icon: , label: '技术合同登记', }, { icon: , label: '大学生入驻申请', }, { icon: , label: '企业档案调取申请', }, ] return (
办事指南
全部
{guideItems.map((item, index) => ( {item.icon} {item.label} {index < guideItems.length - 1 && ( )} ))}
会议预定
信息公开
通知公告
政策查询
园区导览
信息咨询
) }