import Link from "next/link" import { BLOG_POSTS } from "@/lib/blog-data" export default function BlogPreviewSection() { const featured = BLOG_POSTS.slice(0, 2) return (
Insights

把产品判断写成文章,而不是散落在对话里

这些内容围绕 DAL Code 的产品隐喻、Agent 执行、多模型路由和 Skills 平台展开。

查看全部文章
{featured.map((post) => (
{post.category}

{post.title}

{post.excerpt}

{post.date}
·
{post.category}
))}
) }