├── .eslintrc.json ├── .gitignore ├── .gitpod.yml ├── .nvmrc ├── .prettierrc ├── .vscode └── settings.json ├── .yarn ├── patches │ └── @stackblitz-sdk-npm-1.7.0-alpha.3-1f8676ad43.patch ├── plugins │ └── @yarnpkg │ │ ├── plugin-interactive-tools.cjs │ │ └── plugin-typescript.cjs └── releases │ └── yarn-3.2.0.cjs ├── .yarnrc.yml ├── LICENSE ├── README.md ├── assets └── contentlayer-generated │ ├── index.d.ts │ └── types.d.ts ├── content ├── blog │ ├── beta.mdx │ └── working-with-content-is-hard-for-developers.mdx ├── config │ └── global.yaml ├── docs │ ├── 100-getting-started │ │ └── index.mdx │ ├── 200-concepts │ │ ├── 100-how-contentlayer-works.mdx │ │ ├── 200-content-modeling.mdx │ │ ├── 300-type-safety.mdx │ │ ├── 400-comparison.mdx │ │ └── index.mdx │ ├── 300-sources │ │ ├── 100-files │ │ │ ├── 100-mapping-document-types.mdx │ │ │ ├── 200-generated-data.mdx │ │ │ ├── 300-generated-types.mdx │ │ │ ├── 400-mdx.mdx │ │ │ ├── 500-images.mdx │ │ │ └── index.mdx │ │ ├── 125-notion │ │ │ ├── 100-getting-started.mdx │ │ │ ├── 200-configure-databases.mdx │ │ │ ├── 300-configure-properties.mdx │ │ │ ├── 400-configure-renderer.mdx │ │ │ ├── 500-images.mdx │ │ │ └── index.mdx │ │ ├── 150-remote-files.mdx │ │ ├── 200-contentful.mdx │ │ ├── 300-sanity.mdx │ │ └── index.mdx │ ├── 400-environments │ │ ├── 100-nextjs.mdx │ │ ├── 200-remix.mdx │ │ ├── 300-svelte.mdx │ │ ├── 400-astro.mdx │ │ ├── 500-vite.mdx │ │ └── index.mdx │ ├── 500-reference │ │ ├── 100-cli.mdx │ │ ├── 200-next-contentlayer.mdx │ │ ├── 200-source-files │ │ │ ├── 100-make-source.mdx │ │ │ ├── 200-define-document-type.mdx │ │ │ ├── 300-define-nested-type.mdx │ │ │ ├── 400-field-types.mdx │ │ │ └── index.mdx │ │ ├── 250-source-notion │ │ │ ├── 100-make-source.mdx │ │ │ ├── 200-define-database.mdx │ │ │ ├── 300-properties.mdx │ │ │ └── index.mdx │ │ └── index.mdx │ ├── 600-integrations │ │ ├── 100-stackbit │ │ │ ├── 100-tutorial.mdx │ │ │ ├── 200-config.mdx │ │ │ ├── 300-dev-server.mdx │ │ │ └── index.mdx │ │ └── index.mdx │ ├── 700-other │ │ ├── 100-faq.mdx │ │ ├── 200-roadmap.mdx │ │ ├── 300-changelog.mdx │ │ ├── 400-contributing.mdx │ │ ├── 500-known-problems.mdx │ │ └── index.mdx │ └── index.mdx └── examples │ ├── 100-nextjs.mdx │ ├── 200-vite.mdx │ ├── 900-other.mdx │ └── index.mdx ├── contentlayer.config.ts ├── netlify.toml ├── next-env.d.ts ├── next-sitemap.js ├── next.config.js ├── package.json ├── postcss.config.js ├── public ├── favicon │ ├── android-chrome-192x192.png │ ├── android-chrome-512x512.png │ ├── apple-touch-icon-114x114.png │ ├── apple-touch-icon-120x120.png │ ├── apple-touch-icon-144x144.png │ ├── apple-touch-icon-152x152.png │ ├── apple-touch-icon-167x167.png │ ├── apple-touch-icon-180x180.png │ ├── apple-touch-icon-57x57.png │ ├── apple-touch-icon-60x60.png │ ├── apple-touch-icon-72x72.png │ ├── apple-touch-icon-76x76.png │ ├── favicon-128x128.png │ ├── favicon-16x16.png │ ├── favicon-196x196.png │ ├── favicon-32x32.png │ ├── favicon-96x96.png │ ├── mstile-144x144.png │ ├── mstile-150x150.png │ ├── mstile-310x150.png │ ├── mstile-310x310.png │ └── mstile-70x70.png ├── fonts │ └── virgil.woff2 └── images │ ├── beta-launch-post-meta.png │ ├── content-as-data.png │ ├── content-is-hard-meta.png │ ├── content-timeline.png │ ├── contentlayer-in-five-minutes.png │ ├── intro-thumbnail.jpg │ ├── local-data-transformation.png │ ├── logos │ ├── astro.svg │ ├── contentful.svg │ ├── mdx.svg │ ├── nextjs.svg │ ├── notion.svg │ ├── remix.svg │ ├── sanity.svg │ └── vite.svg │ ├── notion-contentlayer-source.png │ ├── notion │ ├── database.png │ └── integration_granular_permissions.gif │ ├── performance-comparison.png │ ├── playground-hint-dev-server.png │ ├── playground-hint-edit.png │ ├── playground-hint-updates.png │ ├── post-feed.png │ ├── post-layout.png │ └── stackbit-visual-editing.gif ├── scripts └── generate-page-ids.mjs ├── src ├── components │ ├── ColorSchemeContext.tsx │ ├── SearchContext.tsx │ ├── blog │ │ ├── BenchmarkResults.tsx │ │ ├── BlogDetails.tsx │ │ ├── BlogHeader.tsx │ │ ├── BlogPreview.tsx │ │ ├── BulletList.tsx │ │ ├── ContentStack.tsx │ │ ├── Playground.tsx │ │ ├── RelatedPosts.tsx │ │ └── TLDR.tsx │ ├── common │ │ ├── Arrow │ │ │ ├── CurvedLong.tsx │ │ │ ├── CurvedShort.tsx │ │ │ ├── LoopedLong.tsx │ │ │ ├── LoopedShort.tsx │ │ │ ├── StraightDashed.tsx │ │ │ ├── StraightLong.tsx │ │ │ ├── StraightShort.tsx │ │ │ └── index.tsx │ │ ├── Author.tsx │ │ ├── Button.tsx │ │ ├── Callout.tsx │ │ ├── Card.tsx │ │ ├── ChevronLink.tsx │ │ ├── ColorSchemeSwitcher.tsx │ │ ├── Container.tsx │ │ ├── Footer.tsx │ │ ├── Headings.tsx │ │ ├── Icon │ │ │ ├── API.tsx │ │ │ ├── Bars.tsx │ │ │ ├── BrokenLink.tsx │ │ │ ├── Calendar.tsx │ │ │ ├── Check.tsx │ │ │ ├── CheckCircle.tsx │ │ │ ├── CheckCircleOutline.tsx │ │ │ ├── ChevronDown.tsx │ │ │ ├── ChevronLeft.tsx │ │ │ ├── ChevronRight.tsx │ │ │ ├── Close.tsx │ │ │ ├── Code.tsx │ │ │ ├── CodeLight.tsx │ │ │ ├── Collapse.tsx │ │ │ ├── Contentful.tsx │ │ │ ├── Contentlayer.tsx │ │ │ ├── CrossCircleOutline.tsx │ │ │ ├── Database.tsx │ │ │ ├── Discord.tsx │ │ │ ├── Exclamation.tsx │ │ │ ├── Expand.tsx │ │ │ ├── ExternalLink.tsx │ │ │ ├── Gear.tsx │ │ │ ├── GitHub.tsx │ │ │ ├── Gitpod.tsx │ │ │ ├── GraphQL.tsx │ │ │ ├── Info.tsx │ │ │ ├── Jekyll.tsx │ │ │ ├── Lightning.tsx │ │ │ ├── Markdown.tsx │ │ │ ├── Moon.tsx │ │ │ ├── Notion.tsx │ │ │ ├── PHP.tsx │ │ │ ├── PlayButton.tsx │ │ │ ├── Plus.tsx │ │ │ ├── Question.tsx │ │ │ ├── React.tsx │ │ │ ├── Rocket.tsx │ │ │ ├── Search.tsx │ │ │ ├── Sign.tsx │ │ │ ├── Sun.tsx │ │ │ ├── Template.tsx │ │ │ ├── Users.tsx │ │ │ ├── WordPress.tsx │ │ │ └── index.tsx │ │ ├── Label.tsx │ │ ├── Link.tsx │ │ ├── Logo.tsx │ │ ├── MainNavigation.tsx │ │ ├── PageNavigation.tsx │ │ └── User.tsx │ ├── docs │ │ ├── DocsCard.tsx │ │ ├── DocsFooter.tsx │ │ ├── DocsHeader.tsx │ │ ├── DocsNavigation.tsx │ │ └── OptionsTable.tsx │ ├── examples │ │ └── ExamplesFooter.tsx │ └── landing-page │ │ ├── Checklist.tsx │ │ ├── CodeWindow.tsx │ │ ├── Dashed.tsx │ │ ├── DataTransformation.tsx │ │ ├── FAQ.tsx │ │ ├── Features.tsx │ │ ├── FileTree.tsx │ │ ├── Heading.tsx │ │ ├── Hero.tsx │ │ ├── HowItWorks.tsx │ │ ├── Paragraph.tsx │ │ ├── Playground.tsx │ │ ├── Support.tsx │ │ ├── Testimonials.tsx │ │ ├── Tweets.tsx │ │ └── Video.tsx ├── contentlayer │ ├── document │ │ ├── Doc.ts │ │ ├── Example.ts │ │ ├── GlobalConfig.ts │ │ └── Post.ts │ ├── index.ts │ ├── nested │ │ ├── Link.ts │ │ └── SEO.ts │ └── utils.ts ├── pages │ ├── 404.tsx │ ├── _app.tsx │ ├── _document.tsx │ ├── blog │ │ ├── [slug].tsx │ │ └── index.tsx │ ├── docs │ │ └── [[...slug]].tsx │ ├── examples │ │ └── [[...slug]].tsx │ └── index.tsx ├── styles │ ├── globals.css │ ├── hljs-github-dark.css │ ├── markdown.css │ ├── tailwind.css │ └── twoslash-shiki.css └── utils │ ├── blog │ └── beta-post-snippets.ts │ ├── build-docs-tree.ts │ ├── build-examples-tree.ts │ ├── helpers.ts │ ├── next.ts │ ├── object.ts │ ├── sluggify.ts │ ├── syntax-highlighting.ts │ ├── used-by-count.ts │ └── validate-duplicate-ids.ts ├── tailwind.config.js ├── tsconfig.json ├── types ├── PathSegment.d.ts └── TreeNode.d.ts ├── vercel.json └── yarn.lock /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": ["plugin:import/recommended", "next/core-web-vitals"] 3 | } 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitpod.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/.gitpod.yml -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | v18 2 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/.prettierrc -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.yarn/patches/@stackblitz-sdk-npm-1.7.0-alpha.3-1f8676ad43.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/.yarn/patches/@stackblitz-sdk-npm-1.7.0-alpha.3-1f8676ad43.patch -------------------------------------------------------------------------------- /.yarn/plugins/@yarnpkg/plugin-interactive-tools.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/.yarn/plugins/@yarnpkg/plugin-interactive-tools.cjs -------------------------------------------------------------------------------- /.yarn/plugins/@yarnpkg/plugin-typescript.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/.yarn/plugins/@yarnpkg/plugin-typescript.cjs -------------------------------------------------------------------------------- /.yarn/releases/yarn-3.2.0.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/.yarn/releases/yarn-3.2.0.cjs -------------------------------------------------------------------------------- /.yarnrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/.yarnrc.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/README.md -------------------------------------------------------------------------------- /assets/contentlayer-generated/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/assets/contentlayer-generated/index.d.ts -------------------------------------------------------------------------------- /assets/contentlayer-generated/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/assets/contentlayer-generated/types.d.ts -------------------------------------------------------------------------------- /content/blog/beta.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/content/blog/beta.mdx -------------------------------------------------------------------------------- /content/blog/working-with-content-is-hard-for-developers.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/content/blog/working-with-content-is-hard-for-developers.mdx -------------------------------------------------------------------------------- /content/config/global.yaml: -------------------------------------------------------------------------------- 1 | title: Contentlayer 2 | -------------------------------------------------------------------------------- /content/docs/100-getting-started/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/content/docs/100-getting-started/index.mdx -------------------------------------------------------------------------------- /content/docs/200-concepts/100-how-contentlayer-works.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/content/docs/200-concepts/100-how-contentlayer-works.mdx -------------------------------------------------------------------------------- /content/docs/200-concepts/200-content-modeling.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/content/docs/200-concepts/200-content-modeling.mdx -------------------------------------------------------------------------------- /content/docs/200-concepts/300-type-safety.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/content/docs/200-concepts/300-type-safety.mdx -------------------------------------------------------------------------------- /content/docs/200-concepts/400-comparison.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/content/docs/200-concepts/400-comparison.mdx -------------------------------------------------------------------------------- /content/docs/200-concepts/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/content/docs/200-concepts/index.mdx -------------------------------------------------------------------------------- /content/docs/300-sources/100-files/100-mapping-document-types.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/content/docs/300-sources/100-files/100-mapping-document-types.mdx -------------------------------------------------------------------------------- /content/docs/300-sources/100-files/200-generated-data.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/content/docs/300-sources/100-files/200-generated-data.mdx -------------------------------------------------------------------------------- /content/docs/300-sources/100-files/300-generated-types.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/content/docs/300-sources/100-files/300-generated-types.mdx -------------------------------------------------------------------------------- /content/docs/300-sources/100-files/400-mdx.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/content/docs/300-sources/100-files/400-mdx.mdx -------------------------------------------------------------------------------- /content/docs/300-sources/100-files/500-images.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/content/docs/300-sources/100-files/500-images.mdx -------------------------------------------------------------------------------- /content/docs/300-sources/100-files/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/content/docs/300-sources/100-files/index.mdx -------------------------------------------------------------------------------- /content/docs/300-sources/125-notion/100-getting-started.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/content/docs/300-sources/125-notion/100-getting-started.mdx -------------------------------------------------------------------------------- /content/docs/300-sources/125-notion/200-configure-databases.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/content/docs/300-sources/125-notion/200-configure-databases.mdx -------------------------------------------------------------------------------- /content/docs/300-sources/125-notion/300-configure-properties.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/content/docs/300-sources/125-notion/300-configure-properties.mdx -------------------------------------------------------------------------------- /content/docs/300-sources/125-notion/400-configure-renderer.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/content/docs/300-sources/125-notion/400-configure-renderer.mdx -------------------------------------------------------------------------------- /content/docs/300-sources/125-notion/500-images.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/content/docs/300-sources/125-notion/500-images.mdx -------------------------------------------------------------------------------- /content/docs/300-sources/125-notion/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/content/docs/300-sources/125-notion/index.mdx -------------------------------------------------------------------------------- /content/docs/300-sources/150-remote-files.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/content/docs/300-sources/150-remote-files.mdx -------------------------------------------------------------------------------- /content/docs/300-sources/200-contentful.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/content/docs/300-sources/200-contentful.mdx -------------------------------------------------------------------------------- /content/docs/300-sources/300-sanity.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/content/docs/300-sources/300-sanity.mdx -------------------------------------------------------------------------------- /content/docs/300-sources/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/content/docs/300-sources/index.mdx -------------------------------------------------------------------------------- /content/docs/400-environments/100-nextjs.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/content/docs/400-environments/100-nextjs.mdx -------------------------------------------------------------------------------- /content/docs/400-environments/200-remix.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/content/docs/400-environments/200-remix.mdx -------------------------------------------------------------------------------- /content/docs/400-environments/300-svelte.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/content/docs/400-environments/300-svelte.mdx -------------------------------------------------------------------------------- /content/docs/400-environments/400-astro.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/content/docs/400-environments/400-astro.mdx -------------------------------------------------------------------------------- /content/docs/400-environments/500-vite.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/content/docs/400-environments/500-vite.mdx -------------------------------------------------------------------------------- /content/docs/400-environments/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/content/docs/400-environments/index.mdx -------------------------------------------------------------------------------- /content/docs/500-reference/100-cli.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/content/docs/500-reference/100-cli.mdx -------------------------------------------------------------------------------- /content/docs/500-reference/200-next-contentlayer.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/content/docs/500-reference/200-next-contentlayer.mdx -------------------------------------------------------------------------------- /content/docs/500-reference/200-source-files/100-make-source.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/content/docs/500-reference/200-source-files/100-make-source.mdx -------------------------------------------------------------------------------- /content/docs/500-reference/200-source-files/200-define-document-type.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/content/docs/500-reference/200-source-files/200-define-document-type.mdx -------------------------------------------------------------------------------- /content/docs/500-reference/200-source-files/300-define-nested-type.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/content/docs/500-reference/200-source-files/300-define-nested-type.mdx -------------------------------------------------------------------------------- /content/docs/500-reference/200-source-files/400-field-types.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/content/docs/500-reference/200-source-files/400-field-types.mdx -------------------------------------------------------------------------------- /content/docs/500-reference/200-source-files/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/content/docs/500-reference/200-source-files/index.mdx -------------------------------------------------------------------------------- /content/docs/500-reference/250-source-notion/100-make-source.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/content/docs/500-reference/250-source-notion/100-make-source.mdx -------------------------------------------------------------------------------- /content/docs/500-reference/250-source-notion/200-define-database.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/content/docs/500-reference/250-source-notion/200-define-database.mdx -------------------------------------------------------------------------------- /content/docs/500-reference/250-source-notion/300-properties.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/content/docs/500-reference/250-source-notion/300-properties.mdx -------------------------------------------------------------------------------- /content/docs/500-reference/250-source-notion/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/content/docs/500-reference/250-source-notion/index.mdx -------------------------------------------------------------------------------- /content/docs/500-reference/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/content/docs/500-reference/index.mdx -------------------------------------------------------------------------------- /content/docs/600-integrations/100-stackbit/100-tutorial.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/content/docs/600-integrations/100-stackbit/100-tutorial.mdx -------------------------------------------------------------------------------- /content/docs/600-integrations/100-stackbit/200-config.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/content/docs/600-integrations/100-stackbit/200-config.mdx -------------------------------------------------------------------------------- /content/docs/600-integrations/100-stackbit/300-dev-server.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/content/docs/600-integrations/100-stackbit/300-dev-server.mdx -------------------------------------------------------------------------------- /content/docs/600-integrations/100-stackbit/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/content/docs/600-integrations/100-stackbit/index.mdx -------------------------------------------------------------------------------- /content/docs/600-integrations/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/content/docs/600-integrations/index.mdx -------------------------------------------------------------------------------- /content/docs/700-other/100-faq.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/content/docs/700-other/100-faq.mdx -------------------------------------------------------------------------------- /content/docs/700-other/200-roadmap.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/content/docs/700-other/200-roadmap.mdx -------------------------------------------------------------------------------- /content/docs/700-other/300-changelog.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/content/docs/700-other/300-changelog.mdx -------------------------------------------------------------------------------- /content/docs/700-other/400-contributing.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/content/docs/700-other/400-contributing.mdx -------------------------------------------------------------------------------- /content/docs/700-other/500-known-problems.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/content/docs/700-other/500-known-problems.mdx -------------------------------------------------------------------------------- /content/docs/700-other/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/content/docs/700-other/index.mdx -------------------------------------------------------------------------------- /content/docs/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/content/docs/index.mdx -------------------------------------------------------------------------------- /content/examples/100-nextjs.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/content/examples/100-nextjs.mdx -------------------------------------------------------------------------------- /content/examples/200-vite.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/content/examples/200-vite.mdx -------------------------------------------------------------------------------- /content/examples/900-other.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/content/examples/900-other.mdx -------------------------------------------------------------------------------- /content/examples/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/content/examples/index.mdx -------------------------------------------------------------------------------- /contentlayer.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/contentlayer.config.ts -------------------------------------------------------------------------------- /netlify.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/netlify.toml -------------------------------------------------------------------------------- /next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/next-env.d.ts -------------------------------------------------------------------------------- /next-sitemap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/next-sitemap.js -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/next.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/favicon/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/public/favicon/android-chrome-192x192.png -------------------------------------------------------------------------------- /public/favicon/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/public/favicon/android-chrome-512x512.png -------------------------------------------------------------------------------- /public/favicon/apple-touch-icon-114x114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/public/favicon/apple-touch-icon-114x114.png -------------------------------------------------------------------------------- /public/favicon/apple-touch-icon-120x120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/public/favicon/apple-touch-icon-120x120.png -------------------------------------------------------------------------------- /public/favicon/apple-touch-icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/public/favicon/apple-touch-icon-144x144.png -------------------------------------------------------------------------------- /public/favicon/apple-touch-icon-152x152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/public/favicon/apple-touch-icon-152x152.png -------------------------------------------------------------------------------- /public/favicon/apple-touch-icon-167x167.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/public/favicon/apple-touch-icon-167x167.png -------------------------------------------------------------------------------- /public/favicon/apple-touch-icon-180x180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/public/favicon/apple-touch-icon-180x180.png -------------------------------------------------------------------------------- /public/favicon/apple-touch-icon-57x57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/public/favicon/apple-touch-icon-57x57.png -------------------------------------------------------------------------------- /public/favicon/apple-touch-icon-60x60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/public/favicon/apple-touch-icon-60x60.png -------------------------------------------------------------------------------- /public/favicon/apple-touch-icon-72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/public/favicon/apple-touch-icon-72x72.png -------------------------------------------------------------------------------- /public/favicon/apple-touch-icon-76x76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/public/favicon/apple-touch-icon-76x76.png -------------------------------------------------------------------------------- /public/favicon/favicon-128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/public/favicon/favicon-128x128.png -------------------------------------------------------------------------------- /public/favicon/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/public/favicon/favicon-16x16.png -------------------------------------------------------------------------------- /public/favicon/favicon-196x196.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/public/favicon/favicon-196x196.png -------------------------------------------------------------------------------- /public/favicon/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/public/favicon/favicon-32x32.png -------------------------------------------------------------------------------- /public/favicon/favicon-96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/public/favicon/favicon-96x96.png -------------------------------------------------------------------------------- /public/favicon/mstile-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/public/favicon/mstile-144x144.png -------------------------------------------------------------------------------- /public/favicon/mstile-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/public/favicon/mstile-150x150.png -------------------------------------------------------------------------------- /public/favicon/mstile-310x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/public/favicon/mstile-310x150.png -------------------------------------------------------------------------------- /public/favicon/mstile-310x310.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/public/favicon/mstile-310x310.png -------------------------------------------------------------------------------- /public/favicon/mstile-70x70.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/public/favicon/mstile-70x70.png -------------------------------------------------------------------------------- /public/fonts/virgil.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/public/fonts/virgil.woff2 -------------------------------------------------------------------------------- /public/images/beta-launch-post-meta.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/public/images/beta-launch-post-meta.png -------------------------------------------------------------------------------- /public/images/content-as-data.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/public/images/content-as-data.png -------------------------------------------------------------------------------- /public/images/content-is-hard-meta.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/public/images/content-is-hard-meta.png -------------------------------------------------------------------------------- /public/images/content-timeline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/public/images/content-timeline.png -------------------------------------------------------------------------------- /public/images/contentlayer-in-five-minutes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/public/images/contentlayer-in-five-minutes.png -------------------------------------------------------------------------------- /public/images/intro-thumbnail.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/public/images/intro-thumbnail.jpg -------------------------------------------------------------------------------- /public/images/local-data-transformation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/public/images/local-data-transformation.png -------------------------------------------------------------------------------- /public/images/logos/astro.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/public/images/logos/astro.svg -------------------------------------------------------------------------------- /public/images/logos/contentful.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/public/images/logos/contentful.svg -------------------------------------------------------------------------------- /public/images/logos/mdx.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/public/images/logos/mdx.svg -------------------------------------------------------------------------------- /public/images/logos/nextjs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/public/images/logos/nextjs.svg -------------------------------------------------------------------------------- /public/images/logos/notion.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/public/images/logos/notion.svg -------------------------------------------------------------------------------- /public/images/logos/remix.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/public/images/logos/remix.svg -------------------------------------------------------------------------------- /public/images/logos/sanity.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/public/images/logos/sanity.svg -------------------------------------------------------------------------------- /public/images/logos/vite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/public/images/logos/vite.svg -------------------------------------------------------------------------------- /public/images/notion-contentlayer-source.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/public/images/notion-contentlayer-source.png -------------------------------------------------------------------------------- /public/images/notion/database.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/public/images/notion/database.png -------------------------------------------------------------------------------- /public/images/notion/integration_granular_permissions.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/public/images/notion/integration_granular_permissions.gif -------------------------------------------------------------------------------- /public/images/performance-comparison.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/public/images/performance-comparison.png -------------------------------------------------------------------------------- /public/images/playground-hint-dev-server.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/public/images/playground-hint-dev-server.png -------------------------------------------------------------------------------- /public/images/playground-hint-edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/public/images/playground-hint-edit.png -------------------------------------------------------------------------------- /public/images/playground-hint-updates.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/public/images/playground-hint-updates.png -------------------------------------------------------------------------------- /public/images/post-feed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/public/images/post-feed.png -------------------------------------------------------------------------------- /public/images/post-layout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/public/images/post-layout.png -------------------------------------------------------------------------------- /public/images/stackbit-visual-editing.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/public/images/stackbit-visual-editing.gif -------------------------------------------------------------------------------- /scripts/generate-page-ids.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/scripts/generate-page-ids.mjs -------------------------------------------------------------------------------- /src/components/ColorSchemeContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/src/components/ColorSchemeContext.tsx -------------------------------------------------------------------------------- /src/components/SearchContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/src/components/SearchContext.tsx -------------------------------------------------------------------------------- /src/components/blog/BenchmarkResults.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/src/components/blog/BenchmarkResults.tsx -------------------------------------------------------------------------------- /src/components/blog/BlogDetails.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/src/components/blog/BlogDetails.tsx -------------------------------------------------------------------------------- /src/components/blog/BlogHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/src/components/blog/BlogHeader.tsx -------------------------------------------------------------------------------- /src/components/blog/BlogPreview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/src/components/blog/BlogPreview.tsx -------------------------------------------------------------------------------- /src/components/blog/BulletList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/src/components/blog/BulletList.tsx -------------------------------------------------------------------------------- /src/components/blog/ContentStack.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/src/components/blog/ContentStack.tsx -------------------------------------------------------------------------------- /src/components/blog/Playground.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/src/components/blog/Playground.tsx -------------------------------------------------------------------------------- /src/components/blog/RelatedPosts.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/src/components/blog/RelatedPosts.tsx -------------------------------------------------------------------------------- /src/components/blog/TLDR.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/src/components/blog/TLDR.tsx -------------------------------------------------------------------------------- /src/components/common/Arrow/CurvedLong.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/src/components/common/Arrow/CurvedLong.tsx -------------------------------------------------------------------------------- /src/components/common/Arrow/CurvedShort.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/src/components/common/Arrow/CurvedShort.tsx -------------------------------------------------------------------------------- /src/components/common/Arrow/LoopedLong.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/src/components/common/Arrow/LoopedLong.tsx -------------------------------------------------------------------------------- /src/components/common/Arrow/LoopedShort.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/src/components/common/Arrow/LoopedShort.tsx -------------------------------------------------------------------------------- /src/components/common/Arrow/StraightDashed.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/src/components/common/Arrow/StraightDashed.tsx -------------------------------------------------------------------------------- /src/components/common/Arrow/StraightLong.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/src/components/common/Arrow/StraightLong.tsx -------------------------------------------------------------------------------- /src/components/common/Arrow/StraightShort.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/src/components/common/Arrow/StraightShort.tsx -------------------------------------------------------------------------------- /src/components/common/Arrow/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/src/components/common/Arrow/index.tsx -------------------------------------------------------------------------------- /src/components/common/Author.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/src/components/common/Author.tsx -------------------------------------------------------------------------------- /src/components/common/Button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/src/components/common/Button.tsx -------------------------------------------------------------------------------- /src/components/common/Callout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/src/components/common/Callout.tsx -------------------------------------------------------------------------------- /src/components/common/Card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/src/components/common/Card.tsx -------------------------------------------------------------------------------- /src/components/common/ChevronLink.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/src/components/common/ChevronLink.tsx -------------------------------------------------------------------------------- /src/components/common/ColorSchemeSwitcher.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/src/components/common/ColorSchemeSwitcher.tsx -------------------------------------------------------------------------------- /src/components/common/Container.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/src/components/common/Container.tsx -------------------------------------------------------------------------------- /src/components/common/Footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/src/components/common/Footer.tsx -------------------------------------------------------------------------------- /src/components/common/Headings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/src/components/common/Headings.tsx -------------------------------------------------------------------------------- /src/components/common/Icon/API.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/src/components/common/Icon/API.tsx -------------------------------------------------------------------------------- /src/components/common/Icon/Bars.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/src/components/common/Icon/Bars.tsx -------------------------------------------------------------------------------- /src/components/common/Icon/BrokenLink.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/src/components/common/Icon/BrokenLink.tsx -------------------------------------------------------------------------------- /src/components/common/Icon/Calendar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/src/components/common/Icon/Calendar.tsx -------------------------------------------------------------------------------- /src/components/common/Icon/Check.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/src/components/common/Icon/Check.tsx -------------------------------------------------------------------------------- /src/components/common/Icon/CheckCircle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/src/components/common/Icon/CheckCircle.tsx -------------------------------------------------------------------------------- /src/components/common/Icon/CheckCircleOutline.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/src/components/common/Icon/CheckCircleOutline.tsx -------------------------------------------------------------------------------- /src/components/common/Icon/ChevronDown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/src/components/common/Icon/ChevronDown.tsx -------------------------------------------------------------------------------- /src/components/common/Icon/ChevronLeft.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/src/components/common/Icon/ChevronLeft.tsx -------------------------------------------------------------------------------- /src/components/common/Icon/ChevronRight.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/src/components/common/Icon/ChevronRight.tsx -------------------------------------------------------------------------------- /src/components/common/Icon/Close.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/src/components/common/Icon/Close.tsx -------------------------------------------------------------------------------- /src/components/common/Icon/Code.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/src/components/common/Icon/Code.tsx -------------------------------------------------------------------------------- /src/components/common/Icon/CodeLight.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/src/components/common/Icon/CodeLight.tsx -------------------------------------------------------------------------------- /src/components/common/Icon/Collapse.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/src/components/common/Icon/Collapse.tsx -------------------------------------------------------------------------------- /src/components/common/Icon/Contentful.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/src/components/common/Icon/Contentful.tsx -------------------------------------------------------------------------------- /src/components/common/Icon/Contentlayer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/src/components/common/Icon/Contentlayer.tsx -------------------------------------------------------------------------------- /src/components/common/Icon/CrossCircleOutline.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/src/components/common/Icon/CrossCircleOutline.tsx -------------------------------------------------------------------------------- /src/components/common/Icon/Database.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/src/components/common/Icon/Database.tsx -------------------------------------------------------------------------------- /src/components/common/Icon/Discord.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/src/components/common/Icon/Discord.tsx -------------------------------------------------------------------------------- /src/components/common/Icon/Exclamation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/src/components/common/Icon/Exclamation.tsx -------------------------------------------------------------------------------- /src/components/common/Icon/Expand.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/src/components/common/Icon/Expand.tsx -------------------------------------------------------------------------------- /src/components/common/Icon/ExternalLink.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/src/components/common/Icon/ExternalLink.tsx -------------------------------------------------------------------------------- /src/components/common/Icon/Gear.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/src/components/common/Icon/Gear.tsx -------------------------------------------------------------------------------- /src/components/common/Icon/GitHub.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/src/components/common/Icon/GitHub.tsx -------------------------------------------------------------------------------- /src/components/common/Icon/Gitpod.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/src/components/common/Icon/Gitpod.tsx -------------------------------------------------------------------------------- /src/components/common/Icon/GraphQL.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/src/components/common/Icon/GraphQL.tsx -------------------------------------------------------------------------------- /src/components/common/Icon/Info.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/src/components/common/Icon/Info.tsx -------------------------------------------------------------------------------- /src/components/common/Icon/Jekyll.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/src/components/common/Icon/Jekyll.tsx -------------------------------------------------------------------------------- /src/components/common/Icon/Lightning.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/src/components/common/Icon/Lightning.tsx -------------------------------------------------------------------------------- /src/components/common/Icon/Markdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/src/components/common/Icon/Markdown.tsx -------------------------------------------------------------------------------- /src/components/common/Icon/Moon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/src/components/common/Icon/Moon.tsx -------------------------------------------------------------------------------- /src/components/common/Icon/Notion.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/src/components/common/Icon/Notion.tsx -------------------------------------------------------------------------------- /src/components/common/Icon/PHP.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/src/components/common/Icon/PHP.tsx -------------------------------------------------------------------------------- /src/components/common/Icon/PlayButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/src/components/common/Icon/PlayButton.tsx -------------------------------------------------------------------------------- /src/components/common/Icon/Plus.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/src/components/common/Icon/Plus.tsx -------------------------------------------------------------------------------- /src/components/common/Icon/Question.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/src/components/common/Icon/Question.tsx -------------------------------------------------------------------------------- /src/components/common/Icon/React.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/src/components/common/Icon/React.tsx -------------------------------------------------------------------------------- /src/components/common/Icon/Rocket.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/src/components/common/Icon/Rocket.tsx -------------------------------------------------------------------------------- /src/components/common/Icon/Search.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/src/components/common/Icon/Search.tsx -------------------------------------------------------------------------------- /src/components/common/Icon/Sign.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/src/components/common/Icon/Sign.tsx -------------------------------------------------------------------------------- /src/components/common/Icon/Sun.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/src/components/common/Icon/Sun.tsx -------------------------------------------------------------------------------- /src/components/common/Icon/Template.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/src/components/common/Icon/Template.tsx -------------------------------------------------------------------------------- /src/components/common/Icon/Users.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/src/components/common/Icon/Users.tsx -------------------------------------------------------------------------------- /src/components/common/Icon/WordPress.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/src/components/common/Icon/WordPress.tsx -------------------------------------------------------------------------------- /src/components/common/Icon/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/src/components/common/Icon/index.tsx -------------------------------------------------------------------------------- /src/components/common/Label.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/src/components/common/Label.tsx -------------------------------------------------------------------------------- /src/components/common/Link.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/src/components/common/Link.tsx -------------------------------------------------------------------------------- /src/components/common/Logo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/src/components/common/Logo.tsx -------------------------------------------------------------------------------- /src/components/common/MainNavigation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/src/components/common/MainNavigation.tsx -------------------------------------------------------------------------------- /src/components/common/PageNavigation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/src/components/common/PageNavigation.tsx -------------------------------------------------------------------------------- /src/components/common/User.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/src/components/common/User.tsx -------------------------------------------------------------------------------- /src/components/docs/DocsCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/src/components/docs/DocsCard.tsx -------------------------------------------------------------------------------- /src/components/docs/DocsFooter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/src/components/docs/DocsFooter.tsx -------------------------------------------------------------------------------- /src/components/docs/DocsHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/src/components/docs/DocsHeader.tsx -------------------------------------------------------------------------------- /src/components/docs/DocsNavigation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/src/components/docs/DocsNavigation.tsx -------------------------------------------------------------------------------- /src/components/docs/OptionsTable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/src/components/docs/OptionsTable.tsx -------------------------------------------------------------------------------- /src/components/examples/ExamplesFooter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/src/components/examples/ExamplesFooter.tsx -------------------------------------------------------------------------------- /src/components/landing-page/Checklist.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/src/components/landing-page/Checklist.tsx -------------------------------------------------------------------------------- /src/components/landing-page/CodeWindow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/src/components/landing-page/CodeWindow.tsx -------------------------------------------------------------------------------- /src/components/landing-page/Dashed.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/src/components/landing-page/Dashed.tsx -------------------------------------------------------------------------------- /src/components/landing-page/DataTransformation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/src/components/landing-page/DataTransformation.tsx -------------------------------------------------------------------------------- /src/components/landing-page/FAQ.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/src/components/landing-page/FAQ.tsx -------------------------------------------------------------------------------- /src/components/landing-page/Features.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/src/components/landing-page/Features.tsx -------------------------------------------------------------------------------- /src/components/landing-page/FileTree.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/src/components/landing-page/FileTree.tsx -------------------------------------------------------------------------------- /src/components/landing-page/Heading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/src/components/landing-page/Heading.tsx -------------------------------------------------------------------------------- /src/components/landing-page/Hero.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/src/components/landing-page/Hero.tsx -------------------------------------------------------------------------------- /src/components/landing-page/HowItWorks.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/src/components/landing-page/HowItWorks.tsx -------------------------------------------------------------------------------- /src/components/landing-page/Paragraph.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/src/components/landing-page/Paragraph.tsx -------------------------------------------------------------------------------- /src/components/landing-page/Playground.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/src/components/landing-page/Playground.tsx -------------------------------------------------------------------------------- /src/components/landing-page/Support.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/src/components/landing-page/Support.tsx -------------------------------------------------------------------------------- /src/components/landing-page/Testimonials.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/src/components/landing-page/Testimonials.tsx -------------------------------------------------------------------------------- /src/components/landing-page/Tweets.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/src/components/landing-page/Tweets.tsx -------------------------------------------------------------------------------- /src/components/landing-page/Video.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/src/components/landing-page/Video.tsx -------------------------------------------------------------------------------- /src/contentlayer/document/Doc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/src/contentlayer/document/Doc.ts -------------------------------------------------------------------------------- /src/contentlayer/document/Example.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/src/contentlayer/document/Example.ts -------------------------------------------------------------------------------- /src/contentlayer/document/GlobalConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/src/contentlayer/document/GlobalConfig.ts -------------------------------------------------------------------------------- /src/contentlayer/document/Post.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/src/contentlayer/document/Post.ts -------------------------------------------------------------------------------- /src/contentlayer/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/src/contentlayer/index.ts -------------------------------------------------------------------------------- /src/contentlayer/nested/Link.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/src/contentlayer/nested/Link.ts -------------------------------------------------------------------------------- /src/contentlayer/nested/SEO.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/src/contentlayer/nested/SEO.ts -------------------------------------------------------------------------------- /src/contentlayer/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/src/contentlayer/utils.ts -------------------------------------------------------------------------------- /src/pages/404.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/src/pages/404.tsx -------------------------------------------------------------------------------- /src/pages/_app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/src/pages/_app.tsx -------------------------------------------------------------------------------- /src/pages/_document.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/src/pages/_document.tsx -------------------------------------------------------------------------------- /src/pages/blog/[slug].tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/src/pages/blog/[slug].tsx -------------------------------------------------------------------------------- /src/pages/blog/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/src/pages/blog/index.tsx -------------------------------------------------------------------------------- /src/pages/docs/[[...slug]].tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/src/pages/docs/[[...slug]].tsx -------------------------------------------------------------------------------- /src/pages/examples/[[...slug]].tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/src/pages/examples/[[...slug]].tsx -------------------------------------------------------------------------------- /src/pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/src/pages/index.tsx -------------------------------------------------------------------------------- /src/styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/src/styles/globals.css -------------------------------------------------------------------------------- /src/styles/hljs-github-dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/src/styles/hljs-github-dark.css -------------------------------------------------------------------------------- /src/styles/markdown.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/src/styles/markdown.css -------------------------------------------------------------------------------- /src/styles/tailwind.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/src/styles/tailwind.css -------------------------------------------------------------------------------- /src/styles/twoslash-shiki.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/src/styles/twoslash-shiki.css -------------------------------------------------------------------------------- /src/utils/blog/beta-post-snippets.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/src/utils/blog/beta-post-snippets.ts -------------------------------------------------------------------------------- /src/utils/build-docs-tree.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/src/utils/build-docs-tree.ts -------------------------------------------------------------------------------- /src/utils/build-examples-tree.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/src/utils/build-examples-tree.ts -------------------------------------------------------------------------------- /src/utils/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/src/utils/helpers.ts -------------------------------------------------------------------------------- /src/utils/next.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/src/utils/next.ts -------------------------------------------------------------------------------- /src/utils/object.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/src/utils/object.ts -------------------------------------------------------------------------------- /src/utils/sluggify.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/src/utils/sluggify.ts -------------------------------------------------------------------------------- /src/utils/syntax-highlighting.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/src/utils/syntax-highlighting.ts -------------------------------------------------------------------------------- /src/utils/used-by-count.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/src/utils/used-by-count.ts -------------------------------------------------------------------------------- /src/utils/validate-duplicate-ids.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/src/utils/validate-duplicate-ids.ts -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/tsconfig.json -------------------------------------------------------------------------------- /types/PathSegment.d.ts: -------------------------------------------------------------------------------- 1 | type PathSegment = { order: number; pathName: string } 2 | -------------------------------------------------------------------------------- /types/TreeNode.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/types/TreeNode.d.ts -------------------------------------------------------------------------------- /vercel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/vercel.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentlayerdev/website/HEAD/yarn.lock --------------------------------------------------------------------------------