"use client"; import { useEffect } from "react"; import { useSectionStore } from "@/stores/sectionStore"; export default function Page() { const { setSections } = useSectionStore(); useEffect(() => { setSections([ { id: "arch-vision", name: "友发愿景" }, { id: "arch-products", name: "产品体系" }, { id: "arch-application", name: "应用场景" }, { id: "arch-contact", name: "联系方式" }, ]); }, [setSections]); return (

友发愿景

内容占位

产品体系

内容占位

应用场景

内容占位

联系方式

内容占位

); }