From 2cee70422007652b5e05e4c5a41120e555c2d279 Mon Sep 17 00:00:00 2001 From: Ember <197652334@qq.com> Date: Sun, 2 Nov 2025 23:49:23 +0800 Subject: [PATCH] chore(landing): add lightweight AnimatedSection wrapper for main-based branch --- web/src/components/landing/AnimatedSection.tsx | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 web/src/components/landing/AnimatedSection.tsx 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}
+} +