import type { MetaRecord } from "nextra";

/**
 * type MetaRecordValue =
 *  | TitleSchema
 *  | PageItemSchema
 *  | SeparatorSchema
 *  | MenuSchema
 *
 * type MetaRecord = Record<string, MetaRecordValue>
 **/
const meta: MetaRecord = {
  onboarding: {
    title: "Onboarding",
  },
  frontend: {
    // type: 'page',
    title: "Frontend",
  },
  backend: {
    // type: 'page',
    title: "Backend",
  },
  infrastructure: {
    // type: 'page',
    title: "Infrastructure",
  },
  "helpful-references": {
    title: "Helpful References",
  },
  "nextra-features-showcase": {
    title: "MDX Features Showcase",
  },
  "thinking-corners": {
    // type: 'page',
    title: "Thinking Corners",
  },
};

export default meta;
