22 lines
601 B
TypeScript
22 lines
601 B
TypeScript
import type { Metadata } from "next"
|
|
import { HeroSection, CtaSection, PostsGridSection } from "@/components/blog"
|
|
|
|
export const metadata: Metadata = {
|
|
title: "产品洞察",
|
|
description: "围绕 Intent-to-Code、Mission Mode、多模型路由和 Skills 平台的产品文章。",
|
|
openGraph: {
|
|
title: "DAL Code 产品洞察",
|
|
description: "围绕 Intent-to-Code、Mission Mode、多模型路由和 Skills 平台的产品文章。",
|
|
},
|
|
}
|
|
|
|
export default function BlogPage() {
|
|
return (
|
|
<main>
|
|
<HeroSection />
|
|
<CtaSection />
|
|
<PostsGridSection />
|
|
</main>
|
|
)
|
|
}
|