gitextract_pvqa2e3n/ ├── .changeset/ │ ├── README.md │ └── config.json ├── .commitlintrc.json ├── .editorconfig ├── .eslintrc ├── .github/ │ ├── CODEOWNERS │ ├── CODE_OF_CONDUCT.md │ ├── CONTRIBUTING.md │ ├── ISSUE_TEMPLATE/ │ │ ├── bug_report.md │ │ ├── config.yml │ │ ├── documentation-report.md │ │ ├── enhancement-request.md │ │ └── question.md │ ├── PULL_REQUEST_TEMPLATE │ ├── labeler.json │ ├── lock.yml │ └── workflows/ │ ├── commit.yml │ ├── lint.yml │ ├── publish-starters.yml │ └── release.yml ├── .gitignore ├── .husky/ │ ├── .gitignore │ ├── commit-msg │ ├── common.sh │ └── pre-commit ├── .prettierrc ├── @rocketseat/ │ ├── gatsby-theme-docs/ │ │ ├── .npmignore │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── gatsby/ │ │ │ ├── wrapPageElement.js │ │ │ └── wrapRootElement.js │ │ ├── gatsby-browser.js │ │ ├── gatsby-config.js │ │ ├── gatsby-ssr.js │ │ ├── index.js │ │ ├── package.json │ │ └── src/ │ │ ├── @rocketseat/ │ │ │ └── gatsby-theme-docs-core/ │ │ │ └── components/ │ │ │ ├── Docs.js │ │ │ └── Homepage.js │ │ ├── components/ │ │ │ ├── Code/ │ │ │ │ ├── LiveCodeScope.js │ │ │ │ ├── index.js │ │ │ │ └── styles.js │ │ │ ├── Docs/ │ │ │ │ ├── EditGithub.js │ │ │ │ ├── PostNav/ │ │ │ │ │ ├── index.js │ │ │ │ │ └── styles.js │ │ │ │ ├── TOC/ │ │ │ │ │ ├── index.js │ │ │ │ │ └── styles.js │ │ │ │ └── index.js │ │ │ ├── Header.js │ │ │ ├── Homepage.js │ │ │ ├── Layout/ │ │ │ │ ├── index.js │ │ │ │ └── styles.js │ │ │ ├── Logo.js │ │ │ ├── Overlay.js │ │ │ ├── SEO.js │ │ │ └── Sidebar/ │ │ │ ├── ExternalLink/ │ │ │ │ └── index.js │ │ │ ├── InternalLink/ │ │ │ │ └── index.js │ │ │ ├── index.js │ │ │ └── styles.js │ │ ├── styles/ │ │ │ ├── global.js │ │ │ └── theme.js │ │ ├── text/ │ │ │ └── index.mdx │ │ └── util/ │ │ ├── copy-to-clipboard.js │ │ ├── slug.js │ │ └── url.js │ └── gatsby-theme-docs-core/ │ ├── .npmignore │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── gatsby-config.js │ ├── gatsby-node.js │ ├── index.js │ ├── package.json │ ├── rehype-meta-as-attributes.js │ ├── remark-headings-plugin.js │ ├── src/ │ │ ├── components/ │ │ │ ├── Docs.js │ │ │ └── Homepage.js │ │ ├── hooks/ │ │ │ └── useSidebar.js │ │ └── templates/ │ │ ├── docs-query.js │ │ └── homepage-query.js │ └── util/ │ ├── url.js │ └── with-default.js ├── LICENSE.md ├── README.md ├── examples/ │ └── gatsby-theme-docs/ │ ├── .gitignore │ ├── LICENSE │ ├── README.md │ ├── gatsby-config.js │ ├── package.json │ └── src/ │ ├── config/ │ │ └── sidebar.yml │ ├── docs/ │ │ ├── faq.mdx │ │ ├── getting-started.mdx │ │ └── usage/ │ │ ├── creating-docs.mdx │ │ ├── customizing.mdx │ │ ├── navigation.mdx │ │ ├── remark-plugins.md │ │ └── using-yaml-files.md │ ├── home/ │ │ └── index.mdx │ ├── pages/ │ │ └── 404.js │ └── yamlFiles/ │ └── letters.yml └── package.json