"use client" import { CodeIcon, CpuIcon, TerminalIcon, GlobeIcon, DatabaseIcon, LayerIcon, } from "@hugeicons/core-free-icons" import { HugeiconsIcon } from "@hugeicons/react" import { OrbitingCircles } from "@/components/ui/orbiting-circles" import { SectionWrapper } from "@/components/section-wrapper" const techIcons = [ { icon: , label: "Go" }, { icon: , label: "Python" }, { icon: , label: "TypeScript" }, { icon: , label: "C#" }, { icon: , label: "React" }, { icon: , label: "Django" }, ] export function About() { return (
{/* 简介文字 */}

关于我

AI 驱动的全栈工程师,擅长把 AI、自动化和业务系统做成可落地、可衡量的产品。

从 Go / Python / C# 后端、React 前端到 Docker / Linux 部署都能直接落地,覆盖全链路开发。

正在寻找能把 AI 深度接入真实业务、以结果衡量价值的团队。

{/* 环绕动画 */}
{/* 中心文字 */}
6+
年经验
{techIcons.slice(0, 3).map((tech, i) => (
{tech.icon}
))}
{techIcons.slice(3).map((tech, i) => (
{tech.icon}
))}
) }