Ver código fonte

fix: 修复 ServiceConsultation 组件中的 TypeScript 类型错误并同步推送

nahida 1 mês atrás
pai
commit
d9718740e8
1 arquivos alterados com 3 adições e 0 exclusões
  1. 3 0
      src/app/page.tsx

+ 3 - 0
src/app/page.tsx

@@ -9,6 +9,7 @@ import ServerClient from "@/components/serverClient";
 import {serverGet} from "@/utils/request";
 import AnimatedSection from "@/components/AnimatedSection";
 import Honor from "@/components/about/Honor";
+import ServiceConsultation from "@/components/support/ServiceConsultation";
 
 const features: Feature[] = [
   {img: "/assets/home/8.png", title: "产品中心", subtitle: "PRODUCT_CENTER", href: "/products"},
@@ -122,6 +123,8 @@ export default async function Home() {
       <AnimatedSection effect="scale">
         <ServerClient/>
       </AnimatedSection>
+      
+      <ServiceConsultation />
     </>
   )
 }