"use client"; import React from "react"; import Link from "next/link"; const subsystems = [ { name: "城市生命线驾驶舱", img: "/1.png", url: '/test5', }, { name: "生命线预警联动处置平台", img: "/2.png", url: '/test6', }, { name: "生命线物联网平台", img: "/3.png", url: '/test7', }, { name: "燃气管网安全运行监测子系统", img: "/4.png", url: '/test8', }, { name: "供水管网安全运行监测子系统", img: "/5.png", url: '/test9', }, { name: "排水管网安全运行监测子系统", img: "/6.png", url: '/test10', }, { name: "窨井盖安全运行监测子系统", img: "/7.png", url: '/test11', }, ]; export default function CityLifelinePortal() { return (
{subsystems.map((s) => (
{s.name}
{s.name}
点击进入
))}
); }