diff --git a/web/src/components/landing/AnimatedSection.tsx b/web/src/components/landing/AnimatedSection.tsx new file mode 100644 index 00000000..2c16cfcd --- /dev/null +++ b/web/src/components/landing/AnimatedSection.tsx @@ -0,0 +1,5 @@ +export default function AnimatedSection({ children }: { children: React.ReactNode }) { + // 轻量容器:统一间距与可读性,避免引入额外依赖 + return
{children}
+} +