"use client" import Link from "next/link" import { ArrowRight } from "lucide-react" import { Button } from "@/components/ui/button" const services = [ { title: "Web程序开发", description: "前端和后端开发服务,包括响应式网站、Web应用程序和API接口开发。", gradient: "from-blue-400 to-cyan-500", borderColor: "border-blue-200/50", glowColor: "rgba(59,130,246,0.2)", }, { title: "服务器后端计算", description: "服务器架构设计、数据库管理、后端服务开发和系统优化。", gradient: "from-purple-400 to-indigo-500", borderColor: "border-purple-200/50", glowColor: "rgba(147,51,234,0.2)", }, { title: "网络架构搭建", description: "网络基础设施规划、网络安全配置和系统集成服务。", gradient: "from-pink-400 to-rose-500", borderColor: "border-pink-200/50", glowColor: "rgba(236,72,153,0.2)", }, ] export default function ServicesSection() { return (

服务范围

提供Web开发、服务器管理和网络架构相关的技术服务

{services.map((service, index) => (
{/* Enhanced Background gradient overlay */}
{/* Floating Glass Orbs */}
{/* Enhanced 纯色背景图标,无图标内容,增强玻璃效果 */}
{/* Glass overlay */}

{service.title}

{service.description}

))}
{/* Enhanced CTA to Services Page */}

更多服务

查看完整的服务列表

) }