Files
ZY-Agent/frontend/src/content/en/_meta.ts
T
JeffJiang 7dc0c7d01f feat(blog): implement blog structure with post listing, tagging, and layout enhancements (#1962)
* feat(blog): implement blog structure with post listing and tagging functionality

* feat(blog): enhance blog layout and post metadata display with new components

* fix(blog): address PR #1962 review feedback and fix lint issues (#14)

* fix: format

---------

Co-authored-by: Copilot <198982749+Copilot@users.noreply.github.com>
2026-04-10 20:24:52 +08:00

31 lines
441 B
TypeScript

import type { MetaRecord } from "nextra";
const meta: MetaRecord = {
index: {
title: "Overview",
},
introduction: {
title: "Introduction",
},
harness: {
title: "DeerFlow Harness",
},
application: {
title: "DeerFlow App",
},
tutorials: {
title: "Tutorials",
},
reference: {
title: "Reference",
},
workspace: {
type: "page",
},
blog: {
type: "page",
},
};
export default meta;