Explorar el Código

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

nahida hace 1 mes
padre
commit
d9718740e8
Se han modificado 1 ficheros con 3 adiciones y 0 borrados
  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 />
     </>
   )
 }