Files
2026-04-29 00:29:14 +08:00

22 lines
587 B
TypeScript

import type { Metadata } from "next"
import { HeroSection, FormSection, CardsSection } from "@/components/contact"
export const metadata: Metadata = {
title: "联系团队",
description: "和 DAL Code 团队聊聊产品试用、企业方案、生态合作和建设方向。",
openGraph: {
title: "联系 DAL Code",
description: "和 DAL Code 团队聊聊产品试用、企业方案、生态合作和建设方向。",
},
}
export default function ContactPage() {
return (
<main>
<HeroSection />
<FormSection />
<CardsSection />
</main>
)
}