7dc0c7d01f
* 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>
31 lines
441 B
TypeScript
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;
|