├── .eslintrc.yml ├── .github └── FUNDING.yml ├── .gitignore ├── LICENSE ├── README.md ├── gatsby-browser.js ├── gatsby-config.js ├── gatsby-node.js ├── global.d.ts ├── package.json ├── src ├── components │ ├── Content.tsx │ ├── Footer │ │ └── index.tsx │ ├── Header │ │ ├── Branding.tsx │ │ ├── Link.tsx │ │ ├── Links.tsx │ │ ├── Search.tsx │ │ ├── ThemeToggle.tsx │ │ └── index.tsx │ ├── Link.tsx │ ├── Logo.tsx │ ├── Main.tsx │ ├── Sidebar.tsx │ └── SidebarToggle.tsx ├── declarations.d.ts ├── fonts │ ├── Inter.var.woff2 │ └── JetBrainsMono-Regular.woff2 ├── html.tsx ├── layouts │ └── index.tsx ├── styles │ ├── base.css │ ├── fonts.css │ └── normalize.css └── templates │ └── page.tsx └── tsconfig.json /.eslintrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docxy/docgen/HEAD/.eslintrc.yml -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docxy/docgen/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docxy/docgen/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docxy/docgen/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docxy/docgen/HEAD/README.md -------------------------------------------------------------------------------- /gatsby-browser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docxy/docgen/HEAD/gatsby-browser.js -------------------------------------------------------------------------------- /gatsby-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docxy/docgen/HEAD/gatsby-config.js -------------------------------------------------------------------------------- /gatsby-node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docxy/docgen/HEAD/gatsby-node.js -------------------------------------------------------------------------------- /global.d.ts: -------------------------------------------------------------------------------- 1 | declare module "gatsby-plugin-dark-mode"; 2 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docxy/docgen/HEAD/package.json -------------------------------------------------------------------------------- /src/components/Content.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docxy/docgen/HEAD/src/components/Content.tsx -------------------------------------------------------------------------------- /src/components/Footer/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docxy/docgen/HEAD/src/components/Footer/index.tsx -------------------------------------------------------------------------------- /src/components/Header/Branding.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docxy/docgen/HEAD/src/components/Header/Branding.tsx -------------------------------------------------------------------------------- /src/components/Header/Link.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docxy/docgen/HEAD/src/components/Header/Link.tsx -------------------------------------------------------------------------------- /src/components/Header/Links.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docxy/docgen/HEAD/src/components/Header/Links.tsx -------------------------------------------------------------------------------- /src/components/Header/Search.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docxy/docgen/HEAD/src/components/Header/Search.tsx -------------------------------------------------------------------------------- /src/components/Header/ThemeToggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docxy/docgen/HEAD/src/components/Header/ThemeToggle.tsx -------------------------------------------------------------------------------- /src/components/Header/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docxy/docgen/HEAD/src/components/Header/index.tsx -------------------------------------------------------------------------------- /src/components/Link.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docxy/docgen/HEAD/src/components/Link.tsx -------------------------------------------------------------------------------- /src/components/Logo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docxy/docgen/HEAD/src/components/Logo.tsx -------------------------------------------------------------------------------- /src/components/Main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docxy/docgen/HEAD/src/components/Main.tsx -------------------------------------------------------------------------------- /src/components/Sidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docxy/docgen/HEAD/src/components/Sidebar.tsx -------------------------------------------------------------------------------- /src/components/SidebarToggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docxy/docgen/HEAD/src/components/SidebarToggle.tsx -------------------------------------------------------------------------------- /src/declarations.d.ts: -------------------------------------------------------------------------------- 1 | declare module "gatsby-plugin-dark-mode"; 2 | -------------------------------------------------------------------------------- /src/fonts/Inter.var.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docxy/docgen/HEAD/src/fonts/Inter.var.woff2 -------------------------------------------------------------------------------- /src/fonts/JetBrainsMono-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docxy/docgen/HEAD/src/fonts/JetBrainsMono-Regular.woff2 -------------------------------------------------------------------------------- /src/html.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docxy/docgen/HEAD/src/html.tsx -------------------------------------------------------------------------------- /src/layouts/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docxy/docgen/HEAD/src/layouts/index.tsx -------------------------------------------------------------------------------- /src/styles/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docxy/docgen/HEAD/src/styles/base.css -------------------------------------------------------------------------------- /src/styles/fonts.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docxy/docgen/HEAD/src/styles/fonts.css -------------------------------------------------------------------------------- /src/styles/normalize.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docxy/docgen/HEAD/src/styles/normalize.css -------------------------------------------------------------------------------- /src/templates/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docxy/docgen/HEAD/src/templates/page.tsx -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docxy/docgen/HEAD/tsconfig.json --------------------------------------------------------------------------------