'use client'; import { motion } from 'framer-motion'; import { useInView } from 'framer-motion'; import { useRef } from 'react'; import { StaticLink } from '@/components/ui/static-link'; import { Button } from '@/components/ui/button'; import { ArrowRight } from 'lucide-react'; import { InsightCard } from '@/components/ui/insight-card'; import { NEWS } from '@/lib/constants'; export function NewsSection() { const ref = useRef(null); const isInView = useInView(ref, { once: true, margin: '-100px' }); return (

最新动态

洞察行业趋势,分享实践经验

{NEWS.slice(0, 3).map((item, idx) => ( ))}
); }