19 lines
354 B
TypeScript
19 lines
354 B
TypeScript
import type { MetaRecord } from "nextra";
|
|
|
|
/**
|
|
* type MetaRecordValue =
|
|
* | TitleSchema
|
|
* | PageItemSchema
|
|
* | SeparatorSchema
|
|
* | MenuSchema
|
|
*
|
|
* type MetaRecord = Record<string, MetaRecordValue>
|
|
**/
|
|
const meta: MetaRecord = {
|
|
interviewing: "Interviewing",
|
|
onboarding: "Onboarding",
|
|
offboarding: "Offboarding",
|
|
};
|
|
|
|
export default meta;
|