import type { MetaFunction } from "@remix-run/node"; import { ImageLoader } from "hooks/ParticleImage"; import { useLoaderData } from "@remix-run/react"; export const meta: MetaFunction = () => { return [ { title: "解决方案 - 新纪元科技" }, { name: "description", content: "新纪元科技提供的环保科技解决方案" }, ]; }; export const loader = () => { return { isClient: true }; }; export default function Solutions() { const { isClient } = useLoaderData(); return (
{/* 页面标题和轮播图 */}
{isClient ? (
{/* 轮播图代码从这里开始 */}
) : (
)}

解决方案

为不同行业提供定制化的环保科技解决方案,助力企业实现可持续发展

{/* 解决方案详情 */}

智慧城市解决方案

通过智能技术优化城市环境管理

  • • 智能环境监测系统
  • • 城市垃圾分类管理
  • • 智慧能源管理平台
  • • 城市空气质量优化

工业节能方案

帮助工业企业实现节能减排

  • • 工业能源审计
  • • 节能改造方案
  • • 废物循环利用
  • • 清洁生产技术
{/* 页脚 - 可以提取为共享组件 */}
); }