25 lines
710 B
TypeScript
25 lines
710 B
TypeScript
import type { Metadata } from "next"
|
|
import { HeroSection, MissionSection, TeamSection, ValuesSection, CareersSection, SocialLinksSection } from "@/components/about"
|
|
|
|
export const metadata: Metadata = {
|
|
title: "产品定位",
|
|
description: "了解 DAL Code 的产品隐喻、核心能力、目标用户和平台方向。",
|
|
openGraph: {
|
|
title: "为什么是 DAL Code",
|
|
description: "了解 DAL Code 的产品隐喻、核心能力、目标用户和平台方向。",
|
|
},
|
|
}
|
|
|
|
export default function AboutPage() {
|
|
return (
|
|
<main>
|
|
<HeroSection />
|
|
<MissionSection />
|
|
<TeamSection />
|
|
<ValuesSection />
|
|
<CareersSection />
|
|
<SocialLinksSection />
|
|
</main>
|
|
)
|
|
}
|