19 lines
409 B
TypeScript
19 lines
409 B
TypeScript
import type { MetaRecord } from "nextra";
|
|
|
|
/**
|
|
* type MetaRecordValue =
|
|
* | TitleSchema
|
|
* | PageItemSchema
|
|
* | SeparatorSchema
|
|
* | MenuSchema
|
|
*
|
|
* type MetaRecord = Record<string, MetaRecordValue>
|
|
**/
|
|
const meta: MetaRecord = {
|
|
humanity: "Humanity-aligned",
|
|
lateral: "Lateral Thinking using Withered Technology",
|
|
optimism: "Perpetual Optimism is a Force Multiplier",
|
|
};
|
|
|
|
export default meta;
|