import React from 'react'; // 将服务分成三组 const serviceGroup1 = [ { icon: '/picture/1.jpg', label: '军队自考', href: '/study', }, { icon: '/picture/2.jpg', label: '军人', href: '/scholarship', }, { icon: '/picture/7.jpg', label: '常用软件', href: '/software', }, { icon: '/picture/8.jpg', label: '智能语音', href: '/voice', }, ]; const serviceGroup2 = [ { icon: '/picture/3.jpg', label: '蓝天邮局', href: '/mail', }, { icon: '/picture/4.jpg', label: '策划工具', href: '/plan', }, { icon: '/picture/9.jpg', label: '办公模板', href: '/office', }, { icon: '/picture/10.jpg', label: '智能校对', href: '/ai-check', }, ]; const serviceGroup3 = [ { icon: '/picture/5.jpg', label: '情调研', href: '/survey', }, { icon: '/picture/6.jpg', label: '上网助手', href: '/net', }, { icon: '/picture/11.jpg', label: '考试平台', href: '/exam', }, { icon: '/picture/12.jpg', label: '学习平台', href: '/study', }, ]; const Integrated: React.FC = () => { return ( <>

综合服务

{/* 三等分flex布局 */}
{/* 第一组 */}
{serviceGroup1.map((service, index) => (
{service.label}
{service.label}
))}
{/* 第二组 */}
{serviceGroup2.map((service, index) => (
{service.label}
{service.label}
))}
{/* 第三组 */}
{serviceGroup3.map((service, index) => (
{service.label}
{service.label}
))}
); }; export default Integrated;