Satori

Satori (悟り) is a Japanese Buddhist term for awakening, comprehension, understanding

frontmatter

Given the following frontmatter:

---
title: "Satori"
description: "Satori (悟り) is a Japanese Buddhist term for awakening, comprehension, understanding"
password: "Irotas"
---

and the following code:

import { useConfig } from 'nextra-theme-docs'
 
export const getFrontMatter = () => {
    return useConfig().frontMatter
}
 
- The frontmatter **title** is: **{getFrontMatter().title}**
- The frontmatter **description** is: **{getFrontMatter().description}**
- The frontmatter **password** is: **{getFrontMatter().password}**

the rendering becomes:

💡
  • The frontmatter title is: Satori
  • The frontmatter description is: Satori (悟り) is a Japanese Buddhist term for awakening, comprehension, understanding
  • The frontmatter password is: Irotas