refactor: 重构首页布局并新增团队页面
- 删除 insights-section 和 testimonials-section 组件 - 新增团队页面 (team/) 及相关组件 - 添加"解决方案"导航项 - 新增 home-solutions-section、methodology-section、team-section 组件 - 优化首页内容结构和产品区块
This commit is contained in:
@@ -7,6 +7,7 @@ import { StaticLink } from '@/components/ui/static-link';
|
||||
import { Button } from '@/components/ui/button';
|
||||
import { PageHeader } from '@/components/ui/page-header';
|
||||
import { ArrowRight, Lightbulb, Cpu, Users, CheckCircle2 } from 'lucide-react';
|
||||
import { MethodologySection } from '@/components/sections/methodology-section';
|
||||
|
||||
export default function SolutionsPage() {
|
||||
const contentRef = useRef(null);
|
||||
@@ -236,6 +237,8 @@ export default function SolutionsPage() {
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<MethodologySection />
|
||||
|
||||
<motion.div
|
||||
initial={{ opacity: 0, y: 20 }}
|
||||
animate={isContentInView ? { opacity: 1, y: 0 } : {}}
|
||||
|
||||
Reference in New Issue
Block a user