chore(landing): add lightweight AnimatedSection wrapper for main-based branch

This commit is contained in:
Ember
2025-11-02 23:49:23 +08:00
parent c6ccc2ae3f
commit 2cee704220

View File

@@ -0,0 +1,5 @@
export default function AnimatedSection({ children }: { children: React.ReactNode }) {
// 轻量容器:统一间距与可读性,避免引入额外依赖
return <section className='py-14 md:py-20'>{children}</section>
}