'use client'; import { InkReveal } from '@/lib/animations'; import { ScrollReveal, slideInLeftVariants } from '@/components/ui/scroll-animations'; import type { Product } from '@/lib/constants/products'; interface ProductOverviewSectionProps { product: Product; } export function ProductOverviewSection({ product }: ProductOverviewSectionProps) { return (
{/* 标题 - 左对齐,slideInLeft 入场 */}

产品概述

{/* 朱砂红装饰线 - InkReveal 入场 */}
{/* 概述文字 - InkReveal 包裹整段,替代 TextReveal */}

{product.overview}

); }