21 lines
442 B
TypeScript
21 lines
442 B
TypeScript
import type { MetaRecord } from "nextra";
|
|
|
|
/**
|
|
* type MetaRecordValue =
|
|
* | TitleSchema
|
|
* | PageItemSchema
|
|
* | SeparatorSchema
|
|
* | MenuSchema
|
|
*
|
|
* type MetaRecord = Record<string, MetaRecordValue>
|
|
**/
|
|
const meta: MetaRecord = {
|
|
curiosity: "The Fast and the Curious",
|
|
obsession: "Obsessed Outliers",
|
|
underdogs: "Underdogs Welcome",
|
|
dydx: "dy/dx > y-intercept",
|
|
team: "Menlo is a Pro Sports Team",
|
|
};
|
|
|
|
export default meta;
|