mirror of
https://github.com/bytedance/deer-flow.git
synced 2026-05-13 12:13:46 +00:00
* 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>
10 lines
133 B
TypeScript
10 lines
133 B
TypeScript
import type { MetaRecord } from "nextra";
|
|
|
|
const meta: MetaRecord = {
|
|
weekly: {
|
|
title: "周报",
|
|
},
|
|
};
|
|
|
|
export default meta;
|