├── .changeset ├── README.md ├── blue-pandas-brush.md ├── config.json ├── fresh-buckets-cheer.md └── long-students-hear.md ├── .envrc ├── .eslintrc ├── .github ├── stale.yml └── workflows │ └── ci.yml ├── .gitignore ├── .gitmodules ├── .gitpod.yml ├── .infra ├── .gitignore ├── docker-compose.yml ├── grafana-datasources.yml ├── grafana.ini ├── otel-collector.yml ├── prometheus.yml └── tempo.yml ├── .prettierignore ├── .vscode ├── common-imports.code-snippets ├── extensions.json ├── operators.code-snippets ├── settings.json └── tasks.json ├── .yarn ├── plugins │ └── @yarnpkg │ │ ├── plugin-interactive-tools.cjs │ │ ├── plugin-typescript.cjs │ │ ├── plugin-version.cjs │ │ └── plugin-workspace-tools.cjs ├── releases │ └── yarn-3.2.3.cjs └── sdks │ ├── integrations.yml │ └── typescript │ ├── bin │ ├── tsc │ └── tsserver │ ├── lib │ ├── tsc.js │ ├── tsserver.js │ └── typescript.js │ └── package.json ├── .yarnrc.yml ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── examples ├── archive │ ├── playground-azimuth-colocated │ │ ├── content │ │ │ ├── data │ │ │ │ ├── authors │ │ │ │ │ ├── jane-doe.yaml │ │ │ │ │ └── john-doe.yaml │ │ │ │ └── config.json │ │ │ └── pages │ │ │ │ ├── about.md │ │ │ │ ├── blog.md │ │ │ │ ├── blog │ │ │ │ ├── azimuth-improvements.md │ │ │ │ ├── customer-loyalty.md │ │ │ │ ├── customer-service-skills-that-every-employee-needs.md │ │ │ │ ├── design-azimuth.md │ │ │ │ ├── design-team-collaborates.md │ │ │ │ ├── sales-as-service.md │ │ │ │ ├── set-big-goals.md │ │ │ │ ├── user-journey-mapping.md │ │ │ │ └── working-from-home.md │ │ │ │ ├── contact.md │ │ │ │ ├── features.md │ │ │ │ ├── index.md │ │ │ │ ├── pricing.md │ │ │ │ ├── privacy-policy.md │ │ │ │ ├── signup.md │ │ │ │ ├── style-guide.md │ │ │ │ └── terms-of-service.md │ │ ├── contentlayer-stackbit-yaml-generator.js │ │ ├── contentlayer.config.ts │ │ ├── next-env.d.ts │ │ ├── next.config.js │ │ ├── package.json │ │ ├── public │ │ │ ├── images │ │ │ │ ├── 1.jpg │ │ │ │ ├── 10.jpg │ │ │ │ ├── 10_thumb.jpg │ │ │ │ ├── 11.jpg │ │ │ │ ├── 11_thumb.jpg │ │ │ │ ├── 12.jpg │ │ │ │ ├── 12_thumb.jpg │ │ │ │ ├── 1_thumb.jpg │ │ │ │ ├── 2.jpg │ │ │ │ ├── 2_thumb.jpg │ │ │ │ ├── 3.jpg │ │ │ │ ├── 3_thumb.jpg │ │ │ │ ├── 4.jpg │ │ │ │ ├── 4_thumb.jpg │ │ │ │ ├── 5.jpg │ │ │ │ ├── 5_thumb.jpg │ │ │ │ ├── 6.jpg │ │ │ │ ├── 6_thumb.jpg │ │ │ │ ├── 7.jpg │ │ │ │ ├── 7_thumb.jpg │ │ │ │ ├── 8.jpg │ │ │ │ ├── 8_thumb.jpg │ │ │ │ ├── 9.jpg │ │ │ │ ├── 9_thumb.jpg │ │ │ │ ├── about.jpg │ │ │ │ ├── author.jpg │ │ │ │ ├── avatar.png │ │ │ │ ├── favicon.png │ │ │ │ ├── feature1.png │ │ │ │ ├── feature2.png │ │ │ │ ├── feature3.png │ │ │ │ ├── hero.png │ │ │ │ ├── intro.jpg │ │ │ │ ├── logo-alt.svg │ │ │ │ ├── logo.svg │ │ │ │ ├── review1.jpg │ │ │ │ ├── review2.jpg │ │ │ │ └── review3.jpg │ │ │ └── js │ │ │ │ ├── init.js │ │ │ │ ├── main.js │ │ │ │ └── plugins.js │ │ ├── src │ │ │ ├── components │ │ │ │ ├── Action.tsx │ │ │ │ ├── ActionLink.tsx │ │ │ │ ├── BlogPostFooter.tsx │ │ │ │ ├── FormField.tsx │ │ │ │ ├── Header.tsx │ │ │ │ ├── Icon.tsx │ │ │ │ ├── Layout.tsx │ │ │ │ ├── footer │ │ │ │ │ ├── Footer.tsx │ │ │ │ │ ├── FooterForm.tsx │ │ │ │ │ ├── FooterNav.tsx │ │ │ │ │ └── FooterText.tsx │ │ │ │ └── landing-sections │ │ │ │ │ ├── CtaButtons.tsx │ │ │ │ │ ├── SectionContact.tsx │ │ │ │ │ ├── SectionContent.tsx │ │ │ │ │ ├── SectionCta.tsx │ │ │ │ │ ├── SectionFaq.tsx │ │ │ │ │ ├── SectionFeatures.tsx │ │ │ │ │ ├── SectionHero.tsx │ │ │ │ │ ├── SectionPosts.tsx │ │ │ │ │ ├── SectionPricing.tsx │ │ │ │ │ ├── SectionReviews.tsx │ │ │ │ │ └── model.ts │ │ │ ├── contentlayer │ │ │ │ ├── documents │ │ │ │ │ ├── Config.ts │ │ │ │ │ └── Person.ts │ │ │ │ ├── index.ts │ │ │ │ └── objects │ │ │ │ │ └── SEO.ts │ │ │ ├── layouts │ │ │ │ ├── BlogLayout.tsx │ │ │ │ ├── LandingLayout.tsx │ │ │ │ ├── PageLayout.tsx │ │ │ │ └── PostLayout.tsx │ │ │ ├── pages │ │ │ │ ├── [[...slug]].tsx │ │ │ │ └── _app.tsx │ │ │ ├── sass │ │ │ │ ├── imports │ │ │ │ │ ├── _banner.scss │ │ │ │ │ ├── _buttons.scss │ │ │ │ │ ├── _footer.scss │ │ │ │ │ ├── _forms.scss │ │ │ │ │ ├── _functions.scss │ │ │ │ │ ├── _general.scss │ │ │ │ │ ├── _header.scss │ │ │ │ │ ├── _helpers.scss │ │ │ │ │ ├── _icons.scss │ │ │ │ │ ├── _menus.scss │ │ │ │ │ ├── _palettes.scss │ │ │ │ │ ├── _posts.scss │ │ │ │ │ ├── _reset.scss │ │ │ │ │ ├── _sections.scss │ │ │ │ │ ├── _structure.scss │ │ │ │ │ ├── _tables.scss │ │ │ │ │ └── _variables.scss │ │ │ │ └── main.scss │ │ │ └── utils │ │ │ │ ├── classNames.tsx │ │ │ │ ├── contentlayer.ts │ │ │ │ ├── htmlToReact.tsx │ │ │ │ ├── index.ts │ │ │ │ ├── link.tsx │ │ │ │ ├── markdownify.tsx │ │ │ │ ├── next.ts │ │ │ │ └── withPrefix.ts │ │ ├── stackbit.yaml │ │ └── tsconfig.json │ ├── playground-azimuth-contentful │ │ ├── contentlayer-stackbit-yaml-generator.js │ │ ├── contentlayer.config.ts │ │ ├── copy-code.sh │ │ ├── next-env.d.ts │ │ ├── next.config.js │ │ ├── package.json │ │ ├── public │ │ │ ├── images │ │ │ │ ├── 1.jpg │ │ │ │ ├── 10.jpg │ │ │ │ ├── 10_thumb.jpg │ │ │ │ ├── 11.jpg │ │ │ │ ├── 11_thumb.jpg │ │ │ │ ├── 12.jpg │ │ │ │ ├── 12_thumb.jpg │ │ │ │ ├── 1_thumb.jpg │ │ │ │ ├── 2.jpg │ │ │ │ ├── 2_thumb.jpg │ │ │ │ ├── 3.jpg │ │ │ │ ├── 3_thumb.jpg │ │ │ │ ├── 4.jpg │ │ │ │ ├── 4_thumb.jpg │ │ │ │ ├── 5.jpg │ │ │ │ ├── 5_thumb.jpg │ │ │ │ ├── 6.jpg │ │ │ │ ├── 6_thumb.jpg │ │ │ │ ├── 7.jpg │ │ │ │ ├── 7_thumb.jpg │ │ │ │ ├── 8.jpg │ │ │ │ ├── 8_thumb.jpg │ │ │ │ ├── 9.jpg │ │ │ │ ├── 9_thumb.jpg │ │ │ │ ├── about.jpg │ │ │ │ ├── author.jpg │ │ │ │ ├── avatar.png │ │ │ │ ├── favicon.png │ │ │ │ ├── feature1.png │ │ │ │ ├── feature2.png │ │ │ │ ├── feature3.png │ │ │ │ ├── hero.png │ │ │ │ ├── intro.jpg │ │ │ │ ├── logo-alt.svg │ │ │ │ ├── logo.svg │ │ │ │ ├── review1.jpg │ │ │ │ ├── review2.jpg │ │ │ │ └── review3.jpg │ │ │ └── js │ │ │ │ ├── init.js │ │ │ │ ├── main.js │ │ │ │ └── plugins.js │ │ ├── src │ │ │ ├── components │ │ │ │ ├── Action.tsx │ │ │ │ ├── ActionLink.tsx │ │ │ │ ├── BlogPostFooter.tsx │ │ │ │ ├── FormField.tsx │ │ │ │ ├── Header.tsx │ │ │ │ ├── Icon.tsx │ │ │ │ ├── Layout.tsx │ │ │ │ ├── footer │ │ │ │ │ ├── Footer.tsx │ │ │ │ │ ├── FooterForm.tsx │ │ │ │ │ ├── FooterNav.tsx │ │ │ │ │ └── FooterText.tsx │ │ │ │ └── landing-sections │ │ │ │ │ ├── CtaButtons.tsx │ │ │ │ │ ├── SectionContact.tsx │ │ │ │ │ ├── SectionContent.tsx │ │ │ │ │ ├── SectionCta.tsx │ │ │ │ │ ├── SectionFaq.tsx │ │ │ │ │ ├── SectionFeatures.tsx │ │ │ │ │ ├── SectionHero.tsx │ │ │ │ │ ├── SectionPosts.tsx │ │ │ │ │ ├── SectionPricing.tsx │ │ │ │ │ └── SectionReviews.tsx │ │ │ ├── layouts │ │ │ │ ├── BlogLayout.tsx │ │ │ │ ├── LandingLayout.tsx │ │ │ │ ├── PageLayout.tsx │ │ │ │ └── PostLayout.tsx │ │ │ ├── pages │ │ │ │ ├── [[...slug]].tsx │ │ │ │ └── _app.tsx │ │ │ ├── sass │ │ │ │ ├── imports │ │ │ │ │ ├── _banner.scss │ │ │ │ │ ├── _buttons.scss │ │ │ │ │ ├── _footer.scss │ │ │ │ │ ├── _forms.scss │ │ │ │ │ ├── _functions.scss │ │ │ │ │ ├── _general.scss │ │ │ │ │ ├── _header.scss │ │ │ │ │ ├── _helpers.scss │ │ │ │ │ ├── _icons.scss │ │ │ │ │ ├── _menus.scss │ │ │ │ │ ├── _palettes.scss │ │ │ │ │ ├── _posts.scss │ │ │ │ │ ├── _reset.scss │ │ │ │ │ ├── _sections.scss │ │ │ │ │ ├── _structure.scss │ │ │ │ │ ├── _tables.scss │ │ │ │ │ └── _variables.scss │ │ │ │ └── main.scss │ │ │ └── utils │ │ │ │ ├── classNames.tsx │ │ │ │ ├── htmlToReact.tsx │ │ │ │ ├── index.ts │ │ │ │ ├── link.tsx │ │ │ │ ├── markdownify.js │ │ │ │ ├── next.ts │ │ │ │ └── withPrefix.ts │ │ └── tsconfig.json │ ├── playground-azimuth-sanity │ │ ├── .gitignore │ │ ├── copy-code.sh │ │ ├── package.json │ │ ├── studio │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── config │ │ │ │ ├── .checksums │ │ │ │ └── @sanity │ │ │ │ │ ├── data-aspects.json │ │ │ │ │ ├── default-layout.json │ │ │ │ │ ├── default-login.json │ │ │ │ │ └── form-builder.json │ │ │ ├── deskStructure.js │ │ │ ├── migrations │ │ │ │ └── migrate.js │ │ │ ├── package.json │ │ │ ├── plugins │ │ │ │ └── .gitkeep │ │ │ ├── sanity.json │ │ │ ├── schemas │ │ │ │ ├── action.js │ │ │ │ ├── blog.js │ │ │ │ ├── config.js │ │ │ │ ├── faq_item.js │ │ │ │ ├── feature_item.js │ │ │ │ ├── footer.js │ │ │ │ ├── footer_form.js │ │ │ │ ├── footer_nav.js │ │ │ │ ├── footer_text.js │ │ │ │ ├── form_field.js │ │ │ │ ├── header.js │ │ │ │ ├── landing.js │ │ │ │ ├── page.js │ │ │ │ ├── person.js │ │ │ │ ├── post.js │ │ │ │ ├── pricing_plan.js │ │ │ │ ├── review_item.js │ │ │ │ ├── schema.js │ │ │ │ ├── section_contact.js │ │ │ │ ├── section_content.js │ │ │ │ ├── section_cta.js │ │ │ │ ├── section_faq.js │ │ │ │ ├── section_features.js │ │ │ │ ├── section_hero.js │ │ │ │ ├── section_posts.js │ │ │ │ ├── section_pricing.js │ │ │ │ ├── section_reviews.js │ │ │ │ └── seo.js │ │ │ ├── static │ │ │ │ ├── .gitkeep │ │ │ │ └── favicon.ico │ │ │ └── tsconfig.json │ │ └── web │ │ │ ├── contentlayer │ │ │ └── contentlayer.ts │ │ │ ├── dev.js │ │ │ ├── entries.json │ │ │ ├── next.config.js │ │ │ ├── package.json │ │ │ └── tsconfig.json │ ├── playground-azimuth │ │ ├── content │ │ │ ├── data │ │ │ │ ├── authors │ │ │ │ │ ├── jane-doe.yaml │ │ │ │ │ └── john-doe.yaml │ │ │ │ └── config.json │ │ │ └── pages │ │ │ │ ├── about.md │ │ │ │ ├── blog.md │ │ │ │ ├── blog │ │ │ │ ├── azimuth-improvements.md │ │ │ │ ├── customer-loyalty.md │ │ │ │ ├── customer-service-skills-that-every-employee-needs.md │ │ │ │ ├── design-azimuth.md │ │ │ │ ├── design-team-collaborates.md │ │ │ │ ├── sales-as-service.md │ │ │ │ ├── set-big-goals.md │ │ │ │ ├── user-journey-mapping.md │ │ │ │ └── working-from-home.md │ │ │ │ ├── contact.md │ │ │ │ ├── features.md │ │ │ │ ├── index.md │ │ │ │ ├── pricing.md │ │ │ │ ├── privacy-policy.md │ │ │ │ ├── signup.md │ │ │ │ ├── style-guide.md │ │ │ │ └── terms-of-service.md │ │ ├── contentlayer.config.ts │ │ ├── next-env.d.ts │ │ ├── next.config.js │ │ ├── package.json │ │ ├── public │ │ │ ├── images │ │ │ │ ├── 1.jpg │ │ │ │ ├── 10.jpg │ │ │ │ ├── 10_thumb.jpg │ │ │ │ ├── 11.jpg │ │ │ │ ├── 11_thumb.jpg │ │ │ │ ├── 12.jpg │ │ │ │ ├── 12_thumb.jpg │ │ │ │ ├── 1_thumb.jpg │ │ │ │ ├── 2.jpg │ │ │ │ ├── 2_thumb.jpg │ │ │ │ ├── 3.jpg │ │ │ │ ├── 3_thumb.jpg │ │ │ │ ├── 4.jpg │ │ │ │ ├── 4_thumb.jpg │ │ │ │ ├── 5.jpg │ │ │ │ ├── 5_thumb.jpg │ │ │ │ ├── 6.jpg │ │ │ │ ├── 6_thumb.jpg │ │ │ │ ├── 7.jpg │ │ │ │ ├── 7_thumb.jpg │ │ │ │ ├── 8.jpg │ │ │ │ ├── 8_thumb.jpg │ │ │ │ ├── 9.jpg │ │ │ │ ├── 9_thumb.jpg │ │ │ │ ├── about.jpg │ │ │ │ ├── author.jpg │ │ │ │ ├── avatar.png │ │ │ │ ├── favicon.png │ │ │ │ ├── feature1.png │ │ │ │ ├── feature2.png │ │ │ │ ├── feature3.png │ │ │ │ ├── hero.png │ │ │ │ ├── intro.jpg │ │ │ │ ├── logo-alt.svg │ │ │ │ ├── logo.svg │ │ │ │ ├── review1.jpg │ │ │ │ ├── review2.jpg │ │ │ │ └── review3.jpg │ │ │ └── js │ │ │ │ ├── init.js │ │ │ │ ├── main.js │ │ │ │ └── plugins.js │ │ ├── src │ │ │ ├── components │ │ │ │ ├── Action.tsx │ │ │ │ ├── ActionLink.tsx │ │ │ │ ├── BlogPostFooter.tsx │ │ │ │ ├── FormField.tsx │ │ │ │ ├── Header.tsx │ │ │ │ ├── Icon.tsx │ │ │ │ ├── Layout.tsx │ │ │ │ ├── footer │ │ │ │ │ ├── Footer.tsx │ │ │ │ │ ├── FooterForm.tsx │ │ │ │ │ ├── FooterNav.tsx │ │ │ │ │ └── FooterText.tsx │ │ │ │ └── landing-sections │ │ │ │ │ ├── CtaButtons.tsx │ │ │ │ │ ├── SectionContact.tsx │ │ │ │ │ ├── SectionContent.tsx │ │ │ │ │ ├── SectionCta.tsx │ │ │ │ │ ├── SectionFaq.tsx │ │ │ │ │ ├── SectionFeatures.tsx │ │ │ │ │ ├── SectionHero.tsx │ │ │ │ │ ├── SectionPosts.tsx │ │ │ │ │ ├── SectionPricing.tsx │ │ │ │ │ └── SectionReviews.tsx │ │ │ ├── contentlayer │ │ │ │ ├── documents │ │ │ │ │ ├── Blog.ts │ │ │ │ │ ├── Config.ts │ │ │ │ │ ├── Landing.ts │ │ │ │ │ ├── Page.ts │ │ │ │ │ ├── Person.ts │ │ │ │ │ └── Post.ts │ │ │ │ ├── index.ts │ │ │ │ ├── nested │ │ │ │ │ ├── Action.ts │ │ │ │ │ ├── FormField.ts │ │ │ │ │ └── SEO.ts │ │ │ │ └── utils.ts │ │ │ ├── layouts │ │ │ │ ├── BlogLayout.tsx │ │ │ │ ├── LandingLayout.tsx │ │ │ │ ├── PageLayout.tsx │ │ │ │ └── PostLayout.tsx │ │ │ ├── pages │ │ │ │ ├── [[...slug]].tsx │ │ │ │ └── _app.tsx │ │ │ ├── sass │ │ │ │ ├── imports │ │ │ │ │ ├── _banner.scss │ │ │ │ │ ├── _buttons.scss │ │ │ │ │ ├── _footer.scss │ │ │ │ │ ├── _forms.scss │ │ │ │ │ ├── _functions.scss │ │ │ │ │ ├── _general.scss │ │ │ │ │ ├── _header.scss │ │ │ │ │ ├── _helpers.scss │ │ │ │ │ ├── _icons.scss │ │ │ │ │ ├── _menus.scss │ │ │ │ │ ├── _palettes.scss │ │ │ │ │ ├── _posts.scss │ │ │ │ │ ├── _reset.scss │ │ │ │ │ ├── _sections.scss │ │ │ │ │ ├── _structure.scss │ │ │ │ │ ├── _tables.scss │ │ │ │ │ └── _variables.scss │ │ │ │ └── main.scss │ │ │ └── utils │ │ │ │ ├── classNames.tsx │ │ │ │ ├── htmlToReact.tsx │ │ │ │ ├── index.ts │ │ │ │ ├── link.tsx │ │ │ │ ├── markdownify.js │ │ │ │ ├── next.ts │ │ │ │ └── withPrefix.ts │ │ ├── stackbit.yaml │ │ └── tsconfig.json │ ├── playground-contentful-starter │ │ ├── .gitignore │ │ ├── .gitpod.yml │ │ ├── README.md │ │ ├── components │ │ │ ├── date.tsx │ │ │ ├── layout.module.css │ │ │ └── layout.tsx │ │ ├── contentlayer.config.ts │ │ ├── next-env.d.ts │ │ ├── next.config.js │ │ ├── package.json │ │ ├── pages │ │ │ ├── _app.tsx │ │ │ ├── index.tsx │ │ │ └── posts │ │ │ │ └── [id].tsx │ │ ├── public │ │ │ ├── favicon.ico │ │ │ └── images │ │ │ │ └── profile.jpg │ │ ├── stackbit.yaml │ │ ├── styles │ │ │ ├── global.css │ │ │ └── utils.module.css │ │ └── tsconfig.json │ ├── starter-js │ │ ├── .gitignore │ │ ├── README.md │ │ ├── components │ │ │ ├── date.jsx │ │ │ ├── layout.jsx │ │ │ └── layout.module.css │ │ ├── contentlayer.config.js │ │ ├── jsconfig.json │ │ ├── next.config.js │ │ ├── package.json │ │ ├── pages │ │ │ ├── _app.jsx │ │ │ ├── index.jsx │ │ │ └── posts │ │ │ │ └── [id].jsx │ │ ├── posts │ │ │ ├── pre-rendering.md │ │ │ └── ssg-ssr.md │ │ ├── public │ │ │ ├── favicon.ico │ │ │ └── images │ │ │ │ └── profile.jpg │ │ └── styles │ │ │ ├── global.css │ │ │ └── utils.module.css │ └── starter │ │ ├── README.md │ │ ├── components │ │ ├── date.tsx │ │ ├── layout.module.css │ │ └── layout.tsx │ │ ├── contentlayer.config.ts │ │ ├── next-env.d.ts │ │ ├── next.config.js │ │ ├── package.json │ │ ├── pages │ │ ├── _app.tsx │ │ ├── index.tsx │ │ └── posts │ │ │ └── [id].tsx │ │ ├── posts │ │ ├── pre-rendering.md │ │ └── ssg-ssr.md │ │ ├── public │ │ ├── favicon.ico │ │ └── images │ │ │ └── profile.jpg │ │ ├── styles │ │ ├── global.css │ │ └── utils.module.css │ │ └── tsconfig.json ├── next-images │ ├── .gitignore │ ├── app │ │ ├── layout.tsx │ │ ├── page.tsx │ │ └── posts │ │ │ └── [slug] │ │ │ └── page.tsx │ ├── components │ │ ├── Button.tsx │ │ └── Header.tsx │ ├── contentlayer.config.ts │ ├── next-env.d.ts │ ├── next.config.js │ ├── package.json │ ├── postcss.config.js │ ├── posts │ │ ├── change-me.mdx │ │ ├── click-me.mdx │ │ └── what-is-contentlayer.mdx │ ├── public │ │ └── images │ │ │ ├── favicon.png │ │ │ └── mark-neal-unsplash.jpg │ ├── styles │ │ └── globals.css │ └── tsconfig.json ├── next-rsc-dynamic │ ├── .gitignore │ ├── .vscode │ │ └── settings.json │ ├── README.md │ ├── app │ │ ├── [...slug] │ │ │ ├── head.tsx │ │ │ └── page.tsx │ │ ├── layout.tsx │ │ ├── page.tsx │ │ └── v │ │ │ ├── [tag] │ │ │ ├── [...slug] │ │ │ │ └── page.tsx │ │ │ └── page.tsx │ │ │ └── page.tsx │ ├── components │ │ ├── Button.tsx │ │ └── Header.tsx │ ├── content │ │ └── .gitkeep │ ├── contentlayer.config.ts │ ├── next-env.d.ts │ ├── next.config.js │ ├── package.json │ ├── postcss.config.js │ ├── posts │ │ ├── change-me.md │ │ ├── click-me.md │ │ └── what-is-contentlayer.md │ ├── public │ │ └── images │ │ │ └── favicon.png │ ├── styles │ │ └── globals.css │ └── tsconfig.json ├── node-script-mdx │ ├── contentlayer.config.ts │ ├── my-script.mjs │ ├── package.json │ └── posts │ │ ├── change-me.mdx │ │ ├── click-me.mdx │ │ └── what-is-contentlayer.mdx ├── node-script-remote-content │ ├── .gitignore │ ├── contentlayer.config.ts │ ├── my-script.mjs │ └── package.json └── node-script │ ├── contentlayer.config.ts │ ├── my-script.mjs │ ├── package.json │ └── posts │ ├── change-me.md │ ├── click-me.md │ └── what-is-contentlayer.md ├── flake.lock ├── flake.nix ├── package.json ├── packages ├── @contentlayer │ ├── cli │ │ ├── README.md │ │ ├── package.json │ │ ├── src │ │ │ ├── commands │ │ │ │ ├── BuildCommand.ts │ │ │ │ ├── DefaultCommand.ts │ │ │ │ ├── DevCommand.ts │ │ │ │ ├── PostInstallCommand.ts │ │ │ │ └── _BaseCommand.ts │ │ │ ├── global.d.ts │ │ │ ├── index.ts │ │ │ └── lib │ │ │ │ └── utils.ts │ │ └── tsconfig.json │ ├── client │ │ ├── .gitignore │ │ ├── package.json │ │ ├── src │ │ │ ├── guards.ts │ │ │ ├── index.ts │ │ │ └── utils.ts │ │ └── tsconfig.json │ ├── core │ │ ├── client.d.ts │ │ ├── package.json │ │ ├── src │ │ │ ├── ArtifactsDir.ts │ │ │ ├── DataCache.ts │ │ │ ├── _ArtifactsDir.ts │ │ │ ├── ambient.d.ts │ │ │ ├── client.ts │ │ │ ├── cwd.ts │ │ │ ├── data-types.ts │ │ │ ├── dynamic-build.ts │ │ │ ├── errors.ts │ │ │ ├── gen.ts │ │ │ ├── generation │ │ │ │ ├── common.ts │ │ │ │ ├── generate-dotpkg.ts │ │ │ │ └── generate-types.ts │ │ │ ├── getConfig │ │ │ │ ├── esbuild.ts │ │ │ │ └── index.ts │ │ │ ├── index.ts │ │ │ ├── markdown │ │ │ │ ├── markdown.ts │ │ │ │ ├── mdx.ts │ │ │ │ └── unified.ts │ │ │ ├── plugin.ts │ │ │ ├── runMain.ts │ │ │ ├── schema │ │ │ │ ├── field.ts │ │ │ │ ├── index.ts │ │ │ │ ├── stackbit-extension.ts │ │ │ │ └── validate.ts │ │ │ └── validate-tsconfig.ts │ │ └── tsconfig.json │ ├── experimental-source-files-stackbit │ │ ├── package.json │ │ ├── src │ │ │ ├── __test__ │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── stackbit.spec.ts.snap │ │ │ │ ├── fixtures │ │ │ │ │ ├── kitchen-sink │ │ │ │ │ │ ├── .stackbit │ │ │ │ │ │ │ └── models │ │ │ │ │ │ │ │ ├── data_model_1.yaml │ │ │ │ │ │ │ │ ├── data_model_2.yaml │ │ │ │ │ │ │ │ ├── object_model_1.yaml │ │ │ │ │ │ │ │ ├── object_model_2.yaml │ │ │ │ │ │ │ │ ├── page_kitchen_sink.yaml │ │ │ │ │ │ │ │ ├── page_model_1.yaml │ │ │ │ │ │ │ │ └── page_model_2.yaml │ │ │ │ │ │ └── stackbit.yaml │ │ │ │ │ ├── next-starter │ │ │ │ │ │ ├── .stackbit │ │ │ │ │ │ │ └── models │ │ │ │ │ │ │ │ ├── Button.yaml │ │ │ │ │ │ │ │ ├── Card.yaml │ │ │ │ │ │ │ │ ├── CardGridSection.yaml │ │ │ │ │ │ │ │ ├── FooterConfig.yaml │ │ │ │ │ │ │ │ ├── HeroSection.yaml │ │ │ │ │ │ │ │ ├── Page.yaml │ │ │ │ │ │ │ │ └── SiteConfig.yaml │ │ │ │ │ │ └── stackbit.yaml │ │ │ │ │ └── small-business │ │ │ │ │ │ ├── .stackbit │ │ │ │ │ │ └── models │ │ │ │ │ │ │ ├── BackgroundImage.yaml │ │ │ │ │ │ │ ├── Button.yaml │ │ │ │ │ │ │ ├── CheckboxFormControl.yaml │ │ │ │ │ │ │ ├── Config.yaml │ │ │ │ │ │ │ ├── ContactBlock.yaml │ │ │ │ │ │ │ ├── ContactSection.yaml │ │ │ │ │ │ │ ├── CtaSection.yaml │ │ │ │ │ │ │ ├── DividerSection.yaml │ │ │ │ │ │ │ ├── EmailFormControl.yaml │ │ │ │ │ │ │ ├── FeatureHighlightSection.yaml │ │ │ │ │ │ │ ├── FeaturedItem.yaml │ │ │ │ │ │ │ ├── FeaturedItemsSection.yaml │ │ │ │ │ │ │ ├── FeaturedPeopleSection.yaml │ │ │ │ │ │ │ ├── FeaturedPostsSection.yaml │ │ │ │ │ │ │ ├── Footer.yaml │ │ │ │ │ │ │ ├── FormBlock.yaml │ │ │ │ │ │ │ ├── Header.yaml │ │ │ │ │ │ │ ├── HeroSection.yaml │ │ │ │ │ │ │ ├── ImageBlock.yaml │ │ │ │ │ │ │ ├── Link.yaml │ │ │ │ │ │ │ ├── MediaGallerySection.yaml │ │ │ │ │ │ │ ├── MetaTag.yaml │ │ │ │ │ │ │ ├── PageLayout.yaml │ │ │ │ │ │ │ ├── PagedPostsSection.yaml │ │ │ │ │ │ │ ├── Person.yaml │ │ │ │ │ │ │ ├── PostFeedLayout.yaml │ │ │ │ │ │ │ ├── PostFeedSection.yaml │ │ │ │ │ │ │ ├── PostLayout.yaml │ │ │ │ │ │ │ ├── QuoteSection.yaml │ │ │ │ │ │ │ ├── RecentPostsSection.yaml │ │ │ │ │ │ │ ├── Section.yaml │ │ │ │ │ │ │ ├── SelectFormControl.yaml │ │ │ │ │ │ │ ├── Seo.yaml │ │ │ │ │ │ │ ├── Social.yaml │ │ │ │ │ │ │ ├── Testimonial.yaml │ │ │ │ │ │ │ ├── TestimonialsSection.yaml │ │ │ │ │ │ │ ├── TextFormControl.yaml │ │ │ │ │ │ │ ├── TextSection.yaml │ │ │ │ │ │ │ ├── TextareaFormControl.yaml │ │ │ │ │ │ │ ├── ThemeStyle.yaml │ │ │ │ │ │ │ └── VideoBlock.yaml │ │ │ │ │ │ └── stackbit.yaml │ │ │ │ └── stackbit.spec.ts │ │ │ ├── index.ts │ │ │ └── mapping.ts │ │ ├── tsconfig.json │ │ └── vitest.config.ts │ ├── source-contentful │ │ ├── package.json │ │ ├── src │ │ │ ├── contentful.ts │ │ │ ├── errors.ts │ │ │ ├── fetchData │ │ │ │ ├── index.ts │ │ │ │ └── mapping.ts │ │ │ ├── index.ts │ │ │ ├── provideSchema.ts │ │ │ ├── schemaOverrides.ts │ │ │ └── types.ts │ │ └── tsconfig.json │ ├── source-files │ │ ├── package.json │ │ ├── src │ │ │ ├── __test__ │ │ │ │ ├── errors │ │ │ │ │ ├── aggregate.spec.ts │ │ │ │ │ └── utils.ts │ │ │ │ ├── fetchData │ │ │ │ │ ├── fixtures │ │ │ │ │ │ ├── 3-small-files │ │ │ │ │ │ │ ├── a.md │ │ │ │ │ │ │ ├── b.md │ │ │ │ │ │ │ └── c.md │ │ │ │ │ │ └── misc-files │ │ │ │ │ │ │ ├── empty-json │ │ │ │ │ │ │ └── empty.json │ │ │ │ │ │ │ ├── empty-markdown │ │ │ │ │ │ │ └── empty.md │ │ │ │ │ │ │ ├── empty-mdx │ │ │ │ │ │ │ └── empty.mdx │ │ │ │ │ │ │ └── empty-yaml │ │ │ │ │ │ │ └── empty.yaml │ │ │ │ │ ├── makeCacheItemFromFilePath.spec.ts │ │ │ │ │ └── utils.ts │ │ │ │ ├── mapping │ │ │ │ │ ├── getDataForFieldDef.spec.ts │ │ │ │ │ └── getFlattenedPath.spec.ts │ │ │ │ └── type-generation │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── basic.spec.ts.snap │ │ │ │ │ └── basic.spec.ts │ │ │ ├── errors │ │ │ │ ├── aggregate.ts │ │ │ │ └── index.ts │ │ │ ├── fetchData │ │ │ │ ├── DocumentContext.ts │ │ │ │ ├── DocumentTypeMap.ts │ │ │ │ ├── fetchAllDocuments.ts │ │ │ │ ├── index.ts │ │ │ │ ├── makeCacheItemFromFilePath.ts │ │ │ │ ├── mapping │ │ │ │ │ ├── field-date.ts │ │ │ │ │ ├── field-image.ts │ │ │ │ │ ├── field-markdown.ts │ │ │ │ │ ├── field-mdx.ts │ │ │ │ │ ├── imagescript.d.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ └── parseFieldData.ts │ │ │ │ ├── types.ts │ │ │ │ └── validateDocumentData.ts │ │ │ ├── index.ts │ │ │ ├── schema │ │ │ │ ├── defs │ │ │ │ │ ├── computed-field.ts │ │ │ │ │ ├── field.ts │ │ │ │ │ └── index.ts │ │ │ │ └── provideSchema.ts │ │ │ └── types.ts │ │ ├── tsconfig.json │ │ └── vitest.config.ts │ ├── source-remote-files │ │ ├── package.json │ │ ├── src │ │ │ └── index.ts │ │ └── tsconfig.json │ └── utils │ │ ├── node.js │ │ ├── package.json │ │ ├── src │ │ ├── base64.ts │ │ ├── effect │ │ │ ├── Array.ts │ │ │ ├── Chunk.ts │ │ │ ├── ConsoleService.ts │ │ │ ├── Effect.ts │ │ │ ├── OT.ts │ │ │ ├── Option.ts │ │ │ ├── Stream.ts │ │ │ ├── These.ts │ │ │ ├── Tracing │ │ │ │ └── Enable.ts │ │ │ └── index.ts │ │ ├── file-paths.ts │ │ ├── fs-in-memory.ts │ │ ├── fs.ts │ │ ├── fs_.ts │ │ ├── guards.ts │ │ ├── hash.ts │ │ ├── index.ts │ │ ├── node │ │ │ ├── fs-watcher.ts │ │ │ ├── fs.ts │ │ │ ├── index.ts │ │ │ └── version.ts │ │ ├── object │ │ │ ├── index.ts │ │ │ ├── omit.ts │ │ │ └── pick.ts │ │ ├── promise.ts │ │ ├── single-item.ts │ │ ├── string.ts │ │ ├── tracing-effect │ │ │ ├── index.ts │ │ │ └── otel-exporter-trace-otlp-grpc.ts │ │ └── tracing.ts │ │ └── tsconfig.json ├── archive │ └── source-sanity │ │ ├── package.json │ │ ├── src │ │ ├── fetchData.ts │ │ ├── index.ts │ │ ├── provideSchema.ts │ │ ├── sanity-client.ts │ │ ├── sanity-types.ts │ │ └── types.ts │ │ └── tsconfig.json ├── contentful-generator │ ├── package.json │ ├── src │ │ ├── index.ts │ │ └── migration.ts │ └── tsconfig.json ├── contentlayer-stackbit-yaml-generator │ ├── bin │ │ └── cli.cjs │ ├── package.json │ ├── src │ │ ├── __test__ │ │ │ ├── __snapshots__ │ │ │ │ └── convert.spec.ts.snap │ │ │ ├── convert.spec.ts │ │ │ └── fixtures │ │ │ │ ├── azimuth-schema │ │ │ │ ├── documents │ │ │ │ │ ├── Blog.ts │ │ │ │ │ ├── Config.ts │ │ │ │ │ ├── Landing.ts │ │ │ │ │ ├── Page.ts │ │ │ │ │ ├── Person.ts │ │ │ │ │ └── Post.ts │ │ │ │ ├── index.ts │ │ │ │ ├── nested │ │ │ │ │ ├── Action.ts │ │ │ │ │ ├── FormField.ts │ │ │ │ │ └── SEO.ts │ │ │ │ └── utils.ts │ │ │ │ ├── blog-schema │ │ │ │ └── index.ts │ │ │ │ └── index.ts │ │ ├── cli │ │ │ ├── DefaultCommand.ts │ │ │ ├── convert.ts │ │ │ ├── index.ts │ │ │ └── utils.ts │ │ └── lib │ │ │ └── index.ts │ ├── tsconfig.json │ └── vitest.config.ts ├── contentlayer │ ├── README.md │ ├── bin │ │ └── cli.cjs │ ├── index.d.ts │ ├── package.json │ ├── src │ │ ├── client │ │ │ └── index.ts │ │ ├── core │ │ │ └── index.ts │ │ ├── source-files │ │ │ ├── index.ts │ │ │ └── schema │ │ │ │ └── index.ts │ │ ├── source-remote-files │ │ │ └── index.ts │ │ └── utils │ │ │ ├── index.ts │ │ │ └── node │ │ │ └── index.ts │ └── tsconfig.json ├── integration-tests │ ├── package.json │ ├── src │ │ ├── empty-content-folder │ │ │ ├── index.test.ts │ │ │ └── posts │ │ │ │ └── .gitkeep │ │ ├── image-field │ │ │ ├── content │ │ │ │ └── posts │ │ │ │ │ ├── image-a.png │ │ │ │ │ └── post-a.md │ │ │ └── index.test.ts │ │ ├── markdown │ │ │ ├── index.test.ts │ │ │ └── posts │ │ │ │ └── post-1.md │ │ ├── mdx-remark-images │ │ │ ├── content │ │ │ │ └── posts │ │ │ │ │ ├── image-a.png │ │ │ │ │ └── post-a.mdx │ │ │ ├── contentDirPath │ │ │ │ └── posts │ │ │ │ │ ├── image-b.png │ │ │ │ │ └── post-b.mdx │ │ │ └── index.test.ts │ │ └── remark-gfm │ │ │ ├── content │ │ │ └── posts │ │ │ │ └── post-1.mdx │ │ │ └── index.test.ts │ ├── tsconfig.json │ └── vitest.config.ts └── next-contentlayer │ ├── package.json │ ├── src │ ├── ambient.d.ts │ ├── check-constraints.ts │ ├── hooks │ │ ├── index.ts │ │ ├── useLiveReload.ts │ │ └── useMDXComponent.ts │ ├── index-cjs.ts │ ├── index.ts │ └── plugin.ts │ └── tsconfig.json ├── prettier.config.js ├── tsconfig.all.json ├── tsconfig.base.json ├── vercel.json └── yarn.lock /.changeset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/.changeset/README.md -------------------------------------------------------------------------------- /.changeset/blue-pandas-brush.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/.changeset/blue-pandas-brush.md -------------------------------------------------------------------------------- /.changeset/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/.changeset/config.json -------------------------------------------------------------------------------- /.changeset/fresh-buckets-cheer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/.changeset/fresh-buckets-cheer.md -------------------------------------------------------------------------------- /.changeset/long-students-hear.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/.changeset/long-students-hear.md -------------------------------------------------------------------------------- /.envrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/.envrc -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/.eslintrc -------------------------------------------------------------------------------- /.github/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/.github/stale.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/.gitmodules -------------------------------------------------------------------------------- /.gitpod.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/.gitpod.yml -------------------------------------------------------------------------------- /.infra/.gitignore: -------------------------------------------------------------------------------- 1 | tempo-data -------------------------------------------------------------------------------- /.infra/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/.infra/docker-compose.yml -------------------------------------------------------------------------------- /.infra/grafana-datasources.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/.infra/grafana-datasources.yml -------------------------------------------------------------------------------- /.infra/grafana.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/.infra/grafana.ini -------------------------------------------------------------------------------- /.infra/otel-collector.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/.infra/otel-collector.yml -------------------------------------------------------------------------------- /.infra/prometheus.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/.infra/prometheus.yml -------------------------------------------------------------------------------- /.infra/tempo.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/.infra/tempo.yml -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/.prettierignore -------------------------------------------------------------------------------- /.vscode/common-imports.code-snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/.vscode/common-imports.code-snippets -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/operators.code-snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/.vscode/operators.code-snippets -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /.yarn/plugins/@yarnpkg/plugin-interactive-tools.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/.yarn/plugins/@yarnpkg/plugin-interactive-tools.cjs -------------------------------------------------------------------------------- /.yarn/plugins/@yarnpkg/plugin-typescript.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/.yarn/plugins/@yarnpkg/plugin-typescript.cjs -------------------------------------------------------------------------------- /.yarn/plugins/@yarnpkg/plugin-version.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/.yarn/plugins/@yarnpkg/plugin-version.cjs -------------------------------------------------------------------------------- /.yarn/plugins/@yarnpkg/plugin-workspace-tools.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/.yarn/plugins/@yarnpkg/plugin-workspace-tools.cjs -------------------------------------------------------------------------------- /.yarn/releases/yarn-3.2.3.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/.yarn/releases/yarn-3.2.3.cjs -------------------------------------------------------------------------------- /.yarn/sdks/integrations.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/.yarn/sdks/integrations.yml -------------------------------------------------------------------------------- /.yarn/sdks/typescript/bin/tsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/.yarn/sdks/typescript/bin/tsc -------------------------------------------------------------------------------- /.yarn/sdks/typescript/bin/tsserver: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/.yarn/sdks/typescript/bin/tsserver -------------------------------------------------------------------------------- /.yarn/sdks/typescript/lib/tsc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/.yarn/sdks/typescript/lib/tsc.js -------------------------------------------------------------------------------- /.yarn/sdks/typescript/lib/tsserver.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/.yarn/sdks/typescript/lib/tsserver.js -------------------------------------------------------------------------------- /.yarn/sdks/typescript/lib/typescript.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/.yarn/sdks/typescript/lib/typescript.js -------------------------------------------------------------------------------- /.yarn/sdks/typescript/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/.yarn/sdks/typescript/package.json -------------------------------------------------------------------------------- /.yarnrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/.yarnrc.yml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | packages/contentlayer/README.md -------------------------------------------------------------------------------- /examples/archive/playground-azimuth-colocated/content/data/authors/jane-doe.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth-colocated/content/data/authors/jane-doe.yaml -------------------------------------------------------------------------------- /examples/archive/playground-azimuth-colocated/content/data/authors/john-doe.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth-colocated/content/data/authors/john-doe.yaml -------------------------------------------------------------------------------- /examples/archive/playground-azimuth-colocated/content/data/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth-colocated/content/data/config.json -------------------------------------------------------------------------------- /examples/archive/playground-azimuth-colocated/content/pages/about.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth-colocated/content/pages/about.md -------------------------------------------------------------------------------- /examples/archive/playground-azimuth-colocated/content/pages/blog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth-colocated/content/pages/blog.md -------------------------------------------------------------------------------- /examples/archive/playground-azimuth-colocated/content/pages/blog/design-azimuth.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth-colocated/content/pages/blog/design-azimuth.md -------------------------------------------------------------------------------- /examples/archive/playground-azimuth-colocated/content/pages/blog/set-big-goals.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth-colocated/content/pages/blog/set-big-goals.md -------------------------------------------------------------------------------- /examples/archive/playground-azimuth-colocated/content/pages/contact.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth-colocated/content/pages/contact.md -------------------------------------------------------------------------------- /examples/archive/playground-azimuth-colocated/content/pages/features.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth-colocated/content/pages/features.md -------------------------------------------------------------------------------- /examples/archive/playground-azimuth-colocated/content/pages/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth-colocated/content/pages/index.md -------------------------------------------------------------------------------- /examples/archive/playground-azimuth-colocated/content/pages/pricing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth-colocated/content/pages/pricing.md -------------------------------------------------------------------------------- /examples/archive/playground-azimuth-colocated/content/pages/privacy-policy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth-colocated/content/pages/privacy-policy.md -------------------------------------------------------------------------------- /examples/archive/playground-azimuth-colocated/content/pages/signup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth-colocated/content/pages/signup.md -------------------------------------------------------------------------------- /examples/archive/playground-azimuth-colocated/content/pages/style-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth-colocated/content/pages/style-guide.md -------------------------------------------------------------------------------- /examples/archive/playground-azimuth-colocated/content/pages/terms-of-service.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth-colocated/content/pages/terms-of-service.md -------------------------------------------------------------------------------- /examples/archive/playground-azimuth-colocated/contentlayer.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth-colocated/contentlayer.config.ts -------------------------------------------------------------------------------- /examples/archive/playground-azimuth-colocated/next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth-colocated/next-env.d.ts -------------------------------------------------------------------------------- /examples/archive/playground-azimuth-colocated/next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth-colocated/next.config.js -------------------------------------------------------------------------------- /examples/archive/playground-azimuth-colocated/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth-colocated/package.json -------------------------------------------------------------------------------- /examples/archive/playground-azimuth-colocated/public/images/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth-colocated/public/images/1.jpg -------------------------------------------------------------------------------- /examples/archive/playground-azimuth-colocated/public/images/10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth-colocated/public/images/10.jpg -------------------------------------------------------------------------------- /examples/archive/playground-azimuth-colocated/public/images/10_thumb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth-colocated/public/images/10_thumb.jpg -------------------------------------------------------------------------------- /examples/archive/playground-azimuth-colocated/public/images/11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth-colocated/public/images/11.jpg -------------------------------------------------------------------------------- /examples/archive/playground-azimuth-colocated/public/images/11_thumb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth-colocated/public/images/11_thumb.jpg -------------------------------------------------------------------------------- /examples/archive/playground-azimuth-colocated/public/images/12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth-colocated/public/images/12.jpg -------------------------------------------------------------------------------- /examples/archive/playground-azimuth-colocated/public/images/12_thumb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth-colocated/public/images/12_thumb.jpg -------------------------------------------------------------------------------- /examples/archive/playground-azimuth-colocated/public/images/1_thumb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth-colocated/public/images/1_thumb.jpg -------------------------------------------------------------------------------- /examples/archive/playground-azimuth-colocated/public/images/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth-colocated/public/images/2.jpg -------------------------------------------------------------------------------- /examples/archive/playground-azimuth-colocated/public/images/2_thumb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth-colocated/public/images/2_thumb.jpg -------------------------------------------------------------------------------- /examples/archive/playground-azimuth-colocated/public/images/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth-colocated/public/images/3.jpg -------------------------------------------------------------------------------- /examples/archive/playground-azimuth-colocated/public/images/3_thumb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth-colocated/public/images/3_thumb.jpg -------------------------------------------------------------------------------- /examples/archive/playground-azimuth-colocated/public/images/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth-colocated/public/images/4.jpg -------------------------------------------------------------------------------- /examples/archive/playground-azimuth-colocated/public/images/4_thumb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth-colocated/public/images/4_thumb.jpg -------------------------------------------------------------------------------- /examples/archive/playground-azimuth-colocated/public/images/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth-colocated/public/images/5.jpg -------------------------------------------------------------------------------- /examples/archive/playground-azimuth-colocated/public/images/5_thumb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth-colocated/public/images/5_thumb.jpg -------------------------------------------------------------------------------- /examples/archive/playground-azimuth-colocated/public/images/6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth-colocated/public/images/6.jpg -------------------------------------------------------------------------------- /examples/archive/playground-azimuth-colocated/public/images/6_thumb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth-colocated/public/images/6_thumb.jpg -------------------------------------------------------------------------------- /examples/archive/playground-azimuth-colocated/public/images/7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth-colocated/public/images/7.jpg -------------------------------------------------------------------------------- /examples/archive/playground-azimuth-colocated/public/images/7_thumb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth-colocated/public/images/7_thumb.jpg -------------------------------------------------------------------------------- /examples/archive/playground-azimuth-colocated/public/images/8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth-colocated/public/images/8.jpg -------------------------------------------------------------------------------- /examples/archive/playground-azimuth-colocated/public/images/8_thumb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth-colocated/public/images/8_thumb.jpg -------------------------------------------------------------------------------- /examples/archive/playground-azimuth-colocated/public/images/9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth-colocated/public/images/9.jpg -------------------------------------------------------------------------------- /examples/archive/playground-azimuth-colocated/public/images/9_thumb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth-colocated/public/images/9_thumb.jpg -------------------------------------------------------------------------------- /examples/archive/playground-azimuth-colocated/public/images/about.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth-colocated/public/images/about.jpg -------------------------------------------------------------------------------- /examples/archive/playground-azimuth-colocated/public/images/author.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth-colocated/public/images/author.jpg -------------------------------------------------------------------------------- /examples/archive/playground-azimuth-colocated/public/images/avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth-colocated/public/images/avatar.png -------------------------------------------------------------------------------- /examples/archive/playground-azimuth-colocated/public/images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth-colocated/public/images/favicon.png -------------------------------------------------------------------------------- /examples/archive/playground-azimuth-colocated/public/images/feature1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth-colocated/public/images/feature1.png -------------------------------------------------------------------------------- /examples/archive/playground-azimuth-colocated/public/images/feature2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth-colocated/public/images/feature2.png -------------------------------------------------------------------------------- /examples/archive/playground-azimuth-colocated/public/images/feature3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth-colocated/public/images/feature3.png -------------------------------------------------------------------------------- /examples/archive/playground-azimuth-colocated/public/images/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth-colocated/public/images/hero.png -------------------------------------------------------------------------------- /examples/archive/playground-azimuth-colocated/public/images/intro.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth-colocated/public/images/intro.jpg -------------------------------------------------------------------------------- /examples/archive/playground-azimuth-colocated/public/images/logo-alt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth-colocated/public/images/logo-alt.svg -------------------------------------------------------------------------------- /examples/archive/playground-azimuth-colocated/public/images/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth-colocated/public/images/logo.svg -------------------------------------------------------------------------------- /examples/archive/playground-azimuth-colocated/public/images/review1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth-colocated/public/images/review1.jpg -------------------------------------------------------------------------------- /examples/archive/playground-azimuth-colocated/public/images/review2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth-colocated/public/images/review2.jpg -------------------------------------------------------------------------------- /examples/archive/playground-azimuth-colocated/public/images/review3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth-colocated/public/images/review3.jpg -------------------------------------------------------------------------------- /examples/archive/playground-azimuth-colocated/public/js/init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth-colocated/public/js/init.js -------------------------------------------------------------------------------- /examples/archive/playground-azimuth-colocated/public/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth-colocated/public/js/main.js -------------------------------------------------------------------------------- /examples/archive/playground-azimuth-colocated/public/js/plugins.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth-colocated/public/js/plugins.js -------------------------------------------------------------------------------- /examples/archive/playground-azimuth-colocated/src/components/Action.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth-colocated/src/components/Action.tsx -------------------------------------------------------------------------------- /examples/archive/playground-azimuth-colocated/src/components/ActionLink.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth-colocated/src/components/ActionLink.tsx -------------------------------------------------------------------------------- /examples/archive/playground-azimuth-colocated/src/components/BlogPostFooter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth-colocated/src/components/BlogPostFooter.tsx -------------------------------------------------------------------------------- /examples/archive/playground-azimuth-colocated/src/components/FormField.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth-colocated/src/components/FormField.tsx -------------------------------------------------------------------------------- /examples/archive/playground-azimuth-colocated/src/components/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth-colocated/src/components/Header.tsx -------------------------------------------------------------------------------- /examples/archive/playground-azimuth-colocated/src/components/Icon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth-colocated/src/components/Icon.tsx -------------------------------------------------------------------------------- /examples/archive/playground-azimuth-colocated/src/components/Layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth-colocated/src/components/Layout.tsx -------------------------------------------------------------------------------- /examples/archive/playground-azimuth-colocated/src/components/footer/Footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth-colocated/src/components/footer/Footer.tsx -------------------------------------------------------------------------------- /examples/archive/playground-azimuth-colocated/src/components/footer/FooterForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth-colocated/src/components/footer/FooterForm.tsx -------------------------------------------------------------------------------- /examples/archive/playground-azimuth-colocated/src/components/footer/FooterNav.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth-colocated/src/components/footer/FooterNav.tsx -------------------------------------------------------------------------------- /examples/archive/playground-azimuth-colocated/src/components/footer/FooterText.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth-colocated/src/components/footer/FooterText.tsx -------------------------------------------------------------------------------- /examples/archive/playground-azimuth-colocated/src/contentlayer/documents/Config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth-colocated/src/contentlayer/documents/Config.ts -------------------------------------------------------------------------------- /examples/archive/playground-azimuth-colocated/src/contentlayer/documents/Person.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth-colocated/src/contentlayer/documents/Person.ts -------------------------------------------------------------------------------- /examples/archive/playground-azimuth-colocated/src/contentlayer/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth-colocated/src/contentlayer/index.ts -------------------------------------------------------------------------------- /examples/archive/playground-azimuth-colocated/src/contentlayer/objects/SEO.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth-colocated/src/contentlayer/objects/SEO.ts -------------------------------------------------------------------------------- /examples/archive/playground-azimuth-colocated/src/layouts/BlogLayout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth-colocated/src/layouts/BlogLayout.tsx -------------------------------------------------------------------------------- /examples/archive/playground-azimuth-colocated/src/layouts/LandingLayout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth-colocated/src/layouts/LandingLayout.tsx -------------------------------------------------------------------------------- /examples/archive/playground-azimuth-colocated/src/layouts/PageLayout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth-colocated/src/layouts/PageLayout.tsx -------------------------------------------------------------------------------- /examples/archive/playground-azimuth-colocated/src/layouts/PostLayout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth-colocated/src/layouts/PostLayout.tsx -------------------------------------------------------------------------------- /examples/archive/playground-azimuth-colocated/src/pages/[[...slug]].tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth-colocated/src/pages/[[...slug]].tsx -------------------------------------------------------------------------------- /examples/archive/playground-azimuth-colocated/src/pages/_app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth-colocated/src/pages/_app.tsx -------------------------------------------------------------------------------- /examples/archive/playground-azimuth-colocated/src/sass/imports/_banner.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth-colocated/src/sass/imports/_banner.scss -------------------------------------------------------------------------------- /examples/archive/playground-azimuth-colocated/src/sass/imports/_buttons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth-colocated/src/sass/imports/_buttons.scss -------------------------------------------------------------------------------- /examples/archive/playground-azimuth-colocated/src/sass/imports/_footer.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth-colocated/src/sass/imports/_footer.scss -------------------------------------------------------------------------------- /examples/archive/playground-azimuth-colocated/src/sass/imports/_forms.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth-colocated/src/sass/imports/_forms.scss -------------------------------------------------------------------------------- /examples/archive/playground-azimuth-colocated/src/sass/imports/_functions.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth-colocated/src/sass/imports/_functions.scss -------------------------------------------------------------------------------- /examples/archive/playground-azimuth-colocated/src/sass/imports/_general.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth-colocated/src/sass/imports/_general.scss -------------------------------------------------------------------------------- /examples/archive/playground-azimuth-colocated/src/sass/imports/_header.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth-colocated/src/sass/imports/_header.scss -------------------------------------------------------------------------------- /examples/archive/playground-azimuth-colocated/src/sass/imports/_helpers.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth-colocated/src/sass/imports/_helpers.scss -------------------------------------------------------------------------------- /examples/archive/playground-azimuth-colocated/src/sass/imports/_icons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth-colocated/src/sass/imports/_icons.scss -------------------------------------------------------------------------------- /examples/archive/playground-azimuth-colocated/src/sass/imports/_menus.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth-colocated/src/sass/imports/_menus.scss -------------------------------------------------------------------------------- /examples/archive/playground-azimuth-colocated/src/sass/imports/_palettes.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth-colocated/src/sass/imports/_palettes.scss -------------------------------------------------------------------------------- /examples/archive/playground-azimuth-colocated/src/sass/imports/_posts.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth-colocated/src/sass/imports/_posts.scss -------------------------------------------------------------------------------- /examples/archive/playground-azimuth-colocated/src/sass/imports/_reset.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth-colocated/src/sass/imports/_reset.scss -------------------------------------------------------------------------------- /examples/archive/playground-azimuth-colocated/src/sass/imports/_sections.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth-colocated/src/sass/imports/_sections.scss -------------------------------------------------------------------------------- /examples/archive/playground-azimuth-colocated/src/sass/imports/_structure.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth-colocated/src/sass/imports/_structure.scss -------------------------------------------------------------------------------- /examples/archive/playground-azimuth-colocated/src/sass/imports/_tables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth-colocated/src/sass/imports/_tables.scss -------------------------------------------------------------------------------- /examples/archive/playground-azimuth-colocated/src/sass/imports/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth-colocated/src/sass/imports/_variables.scss -------------------------------------------------------------------------------- /examples/archive/playground-azimuth-colocated/src/sass/main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth-colocated/src/sass/main.scss -------------------------------------------------------------------------------- /examples/archive/playground-azimuth-colocated/src/utils/classNames.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth-colocated/src/utils/classNames.tsx -------------------------------------------------------------------------------- /examples/archive/playground-azimuth-colocated/src/utils/contentlayer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth-colocated/src/utils/contentlayer.ts -------------------------------------------------------------------------------- /examples/archive/playground-azimuth-colocated/src/utils/htmlToReact.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth-colocated/src/utils/htmlToReact.tsx -------------------------------------------------------------------------------- /examples/archive/playground-azimuth-colocated/src/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth-colocated/src/utils/index.ts -------------------------------------------------------------------------------- /examples/archive/playground-azimuth-colocated/src/utils/link.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth-colocated/src/utils/link.tsx -------------------------------------------------------------------------------- /examples/archive/playground-azimuth-colocated/src/utils/markdownify.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth-colocated/src/utils/markdownify.tsx -------------------------------------------------------------------------------- /examples/archive/playground-azimuth-colocated/src/utils/next.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth-colocated/src/utils/next.ts -------------------------------------------------------------------------------- /examples/archive/playground-azimuth-colocated/src/utils/withPrefix.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth-colocated/src/utils/withPrefix.ts -------------------------------------------------------------------------------- /examples/archive/playground-azimuth-colocated/stackbit.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth-colocated/stackbit.yaml -------------------------------------------------------------------------------- /examples/archive/playground-azimuth-colocated/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth-colocated/tsconfig.json -------------------------------------------------------------------------------- /examples/archive/playground-azimuth-contentful/contentlayer.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth-contentful/contentlayer.config.ts -------------------------------------------------------------------------------- /examples/archive/playground-azimuth-contentful/copy-code.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth-contentful/copy-code.sh -------------------------------------------------------------------------------- /examples/archive/playground-azimuth-contentful/next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth-contentful/next-env.d.ts -------------------------------------------------------------------------------- /examples/archive/playground-azimuth-contentful/next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth-contentful/next.config.js -------------------------------------------------------------------------------- /examples/archive/playground-azimuth-contentful/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth-contentful/package.json -------------------------------------------------------------------------------- /examples/archive/playground-azimuth-contentful/public/images/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth-contentful/public/images/1.jpg -------------------------------------------------------------------------------- /examples/archive/playground-azimuth-contentful/public/images/10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth-contentful/public/images/10.jpg -------------------------------------------------------------------------------- /examples/archive/playground-azimuth-contentful/public/images/10_thumb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth-contentful/public/images/10_thumb.jpg -------------------------------------------------------------------------------- /examples/archive/playground-azimuth-contentful/public/images/11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth-contentful/public/images/11.jpg -------------------------------------------------------------------------------- /examples/archive/playground-azimuth-contentful/public/images/11_thumb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth-contentful/public/images/11_thumb.jpg -------------------------------------------------------------------------------- /examples/archive/playground-azimuth-contentful/public/images/12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth-contentful/public/images/12.jpg -------------------------------------------------------------------------------- /examples/archive/playground-azimuth-contentful/public/images/12_thumb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth-contentful/public/images/12_thumb.jpg -------------------------------------------------------------------------------- /examples/archive/playground-azimuth-contentful/public/images/1_thumb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth-contentful/public/images/1_thumb.jpg -------------------------------------------------------------------------------- /examples/archive/playground-azimuth-contentful/public/images/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth-contentful/public/images/2.jpg -------------------------------------------------------------------------------- /examples/archive/playground-azimuth-contentful/public/images/2_thumb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth-contentful/public/images/2_thumb.jpg -------------------------------------------------------------------------------- /examples/archive/playground-azimuth-contentful/public/images/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth-contentful/public/images/3.jpg -------------------------------------------------------------------------------- /examples/archive/playground-azimuth-contentful/public/images/3_thumb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth-contentful/public/images/3_thumb.jpg -------------------------------------------------------------------------------- /examples/archive/playground-azimuth-contentful/public/images/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth-contentful/public/images/4.jpg -------------------------------------------------------------------------------- /examples/archive/playground-azimuth-contentful/public/images/4_thumb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth-contentful/public/images/4_thumb.jpg -------------------------------------------------------------------------------- /examples/archive/playground-azimuth-contentful/public/images/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth-contentful/public/images/5.jpg -------------------------------------------------------------------------------- /examples/archive/playground-azimuth-contentful/public/images/5_thumb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth-contentful/public/images/5_thumb.jpg -------------------------------------------------------------------------------- /examples/archive/playground-azimuth-contentful/public/images/6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth-contentful/public/images/6.jpg -------------------------------------------------------------------------------- /examples/archive/playground-azimuth-contentful/public/images/6_thumb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth-contentful/public/images/6_thumb.jpg -------------------------------------------------------------------------------- /examples/archive/playground-azimuth-contentful/public/images/7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth-contentful/public/images/7.jpg -------------------------------------------------------------------------------- /examples/archive/playground-azimuth-contentful/public/images/7_thumb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth-contentful/public/images/7_thumb.jpg -------------------------------------------------------------------------------- /examples/archive/playground-azimuth-contentful/public/images/8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth-contentful/public/images/8.jpg -------------------------------------------------------------------------------- /examples/archive/playground-azimuth-contentful/public/images/8_thumb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth-contentful/public/images/8_thumb.jpg -------------------------------------------------------------------------------- /examples/archive/playground-azimuth-contentful/public/images/9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth-contentful/public/images/9.jpg -------------------------------------------------------------------------------- /examples/archive/playground-azimuth-contentful/public/images/9_thumb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth-contentful/public/images/9_thumb.jpg -------------------------------------------------------------------------------- /examples/archive/playground-azimuth-contentful/public/images/about.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth-contentful/public/images/about.jpg -------------------------------------------------------------------------------- /examples/archive/playground-azimuth-contentful/public/images/author.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth-contentful/public/images/author.jpg -------------------------------------------------------------------------------- /examples/archive/playground-azimuth-contentful/public/images/avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth-contentful/public/images/avatar.png -------------------------------------------------------------------------------- /examples/archive/playground-azimuth-contentful/public/images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth-contentful/public/images/favicon.png -------------------------------------------------------------------------------- /examples/archive/playground-azimuth-contentful/public/images/feature1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth-contentful/public/images/feature1.png -------------------------------------------------------------------------------- /examples/archive/playground-azimuth-contentful/public/images/feature2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth-contentful/public/images/feature2.png -------------------------------------------------------------------------------- /examples/archive/playground-azimuth-contentful/public/images/feature3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth-contentful/public/images/feature3.png -------------------------------------------------------------------------------- /examples/archive/playground-azimuth-contentful/public/images/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth-contentful/public/images/hero.png -------------------------------------------------------------------------------- /examples/archive/playground-azimuth-contentful/public/images/intro.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth-contentful/public/images/intro.jpg -------------------------------------------------------------------------------- /examples/archive/playground-azimuth-contentful/public/images/logo-alt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth-contentful/public/images/logo-alt.svg -------------------------------------------------------------------------------- /examples/archive/playground-azimuth-contentful/public/images/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth-contentful/public/images/logo.svg -------------------------------------------------------------------------------- /examples/archive/playground-azimuth-contentful/public/images/review1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth-contentful/public/images/review1.jpg -------------------------------------------------------------------------------- /examples/archive/playground-azimuth-contentful/public/images/review2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth-contentful/public/images/review2.jpg -------------------------------------------------------------------------------- /examples/archive/playground-azimuth-contentful/public/images/review3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth-contentful/public/images/review3.jpg -------------------------------------------------------------------------------- /examples/archive/playground-azimuth-contentful/public/js/init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth-contentful/public/js/init.js -------------------------------------------------------------------------------- /examples/archive/playground-azimuth-contentful/public/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth-contentful/public/js/main.js -------------------------------------------------------------------------------- /examples/archive/playground-azimuth-contentful/public/js/plugins.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth-contentful/public/js/plugins.js -------------------------------------------------------------------------------- /examples/archive/playground-azimuth-contentful/src/components/Action.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth-contentful/src/components/Action.tsx -------------------------------------------------------------------------------- /examples/archive/playground-azimuth-contentful/src/components/ActionLink.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth-contentful/src/components/ActionLink.tsx -------------------------------------------------------------------------------- /examples/archive/playground-azimuth-contentful/src/components/BlogPostFooter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth-contentful/src/components/BlogPostFooter.tsx -------------------------------------------------------------------------------- /examples/archive/playground-azimuth-contentful/src/components/FormField.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth-contentful/src/components/FormField.tsx -------------------------------------------------------------------------------- /examples/archive/playground-azimuth-contentful/src/components/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth-contentful/src/components/Header.tsx -------------------------------------------------------------------------------- /examples/archive/playground-azimuth-contentful/src/components/Icon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth-contentful/src/components/Icon.tsx -------------------------------------------------------------------------------- /examples/archive/playground-azimuth-contentful/src/components/Layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth-contentful/src/components/Layout.tsx -------------------------------------------------------------------------------- /examples/archive/playground-azimuth-contentful/src/components/footer/Footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth-contentful/src/components/footer/Footer.tsx -------------------------------------------------------------------------------- /examples/archive/playground-azimuth-contentful/src/components/footer/FooterForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth-contentful/src/components/footer/FooterForm.tsx -------------------------------------------------------------------------------- /examples/archive/playground-azimuth-contentful/src/components/footer/FooterNav.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth-contentful/src/components/footer/FooterNav.tsx -------------------------------------------------------------------------------- /examples/archive/playground-azimuth-contentful/src/components/footer/FooterText.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth-contentful/src/components/footer/FooterText.tsx -------------------------------------------------------------------------------- /examples/archive/playground-azimuth-contentful/src/layouts/BlogLayout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth-contentful/src/layouts/BlogLayout.tsx -------------------------------------------------------------------------------- /examples/archive/playground-azimuth-contentful/src/layouts/LandingLayout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth-contentful/src/layouts/LandingLayout.tsx -------------------------------------------------------------------------------- /examples/archive/playground-azimuth-contentful/src/layouts/PageLayout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth-contentful/src/layouts/PageLayout.tsx -------------------------------------------------------------------------------- /examples/archive/playground-azimuth-contentful/src/layouts/PostLayout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth-contentful/src/layouts/PostLayout.tsx -------------------------------------------------------------------------------- /examples/archive/playground-azimuth-contentful/src/pages/[[...slug]].tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth-contentful/src/pages/[[...slug]].tsx -------------------------------------------------------------------------------- /examples/archive/playground-azimuth-contentful/src/pages/_app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth-contentful/src/pages/_app.tsx -------------------------------------------------------------------------------- /examples/archive/playground-azimuth-contentful/src/sass/imports/_banner.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth-contentful/src/sass/imports/_banner.scss -------------------------------------------------------------------------------- /examples/archive/playground-azimuth-contentful/src/sass/imports/_buttons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth-contentful/src/sass/imports/_buttons.scss -------------------------------------------------------------------------------- /examples/archive/playground-azimuth-contentful/src/sass/imports/_footer.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth-contentful/src/sass/imports/_footer.scss -------------------------------------------------------------------------------- /examples/archive/playground-azimuth-contentful/src/sass/imports/_forms.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth-contentful/src/sass/imports/_forms.scss -------------------------------------------------------------------------------- /examples/archive/playground-azimuth-contentful/src/sass/imports/_functions.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth-contentful/src/sass/imports/_functions.scss -------------------------------------------------------------------------------- /examples/archive/playground-azimuth-contentful/src/sass/imports/_general.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth-contentful/src/sass/imports/_general.scss -------------------------------------------------------------------------------- /examples/archive/playground-azimuth-contentful/src/sass/imports/_header.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth-contentful/src/sass/imports/_header.scss -------------------------------------------------------------------------------- /examples/archive/playground-azimuth-contentful/src/sass/imports/_helpers.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth-contentful/src/sass/imports/_helpers.scss -------------------------------------------------------------------------------- /examples/archive/playground-azimuth-contentful/src/sass/imports/_icons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth-contentful/src/sass/imports/_icons.scss -------------------------------------------------------------------------------- /examples/archive/playground-azimuth-contentful/src/sass/imports/_menus.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth-contentful/src/sass/imports/_menus.scss -------------------------------------------------------------------------------- /examples/archive/playground-azimuth-contentful/src/sass/imports/_palettes.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth-contentful/src/sass/imports/_palettes.scss -------------------------------------------------------------------------------- /examples/archive/playground-azimuth-contentful/src/sass/imports/_posts.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth-contentful/src/sass/imports/_posts.scss -------------------------------------------------------------------------------- /examples/archive/playground-azimuth-contentful/src/sass/imports/_reset.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth-contentful/src/sass/imports/_reset.scss -------------------------------------------------------------------------------- /examples/archive/playground-azimuth-contentful/src/sass/imports/_sections.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth-contentful/src/sass/imports/_sections.scss -------------------------------------------------------------------------------- /examples/archive/playground-azimuth-contentful/src/sass/imports/_structure.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth-contentful/src/sass/imports/_structure.scss -------------------------------------------------------------------------------- /examples/archive/playground-azimuth-contentful/src/sass/imports/_tables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth-contentful/src/sass/imports/_tables.scss -------------------------------------------------------------------------------- /examples/archive/playground-azimuth-contentful/src/sass/imports/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth-contentful/src/sass/imports/_variables.scss -------------------------------------------------------------------------------- /examples/archive/playground-azimuth-contentful/src/sass/main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth-contentful/src/sass/main.scss -------------------------------------------------------------------------------- /examples/archive/playground-azimuth-contentful/src/utils/classNames.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth-contentful/src/utils/classNames.tsx -------------------------------------------------------------------------------- /examples/archive/playground-azimuth-contentful/src/utils/htmlToReact.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth-contentful/src/utils/htmlToReact.tsx -------------------------------------------------------------------------------- /examples/archive/playground-azimuth-contentful/src/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth-contentful/src/utils/index.ts -------------------------------------------------------------------------------- /examples/archive/playground-azimuth-contentful/src/utils/link.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth-contentful/src/utils/link.tsx -------------------------------------------------------------------------------- /examples/archive/playground-azimuth-contentful/src/utils/markdownify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth-contentful/src/utils/markdownify.js -------------------------------------------------------------------------------- /examples/archive/playground-azimuth-contentful/src/utils/next.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth-contentful/src/utils/next.ts -------------------------------------------------------------------------------- /examples/archive/playground-azimuth-contentful/src/utils/withPrefix.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth-contentful/src/utils/withPrefix.ts -------------------------------------------------------------------------------- /examples/archive/playground-azimuth-contentful/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth-contentful/tsconfig.json -------------------------------------------------------------------------------- /examples/archive/playground-azimuth-sanity/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth-sanity/.gitignore -------------------------------------------------------------------------------- /examples/archive/playground-azimuth-sanity/copy-code.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth-sanity/copy-code.sh -------------------------------------------------------------------------------- /examples/archive/playground-azimuth-sanity/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth-sanity/package.json -------------------------------------------------------------------------------- /examples/archive/playground-azimuth-sanity/studio/.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules 2 | /dist 3 | -------------------------------------------------------------------------------- /examples/archive/playground-azimuth-sanity/studio/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth-sanity/studio/README.md -------------------------------------------------------------------------------- /examples/archive/playground-azimuth-sanity/studio/config/.checksums: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth-sanity/studio/config/.checksums -------------------------------------------------------------------------------- /examples/archive/playground-azimuth-sanity/studio/config/@sanity/data-aspects.json: -------------------------------------------------------------------------------- 1 | { 2 | "listOptions": {} 3 | } 4 | -------------------------------------------------------------------------------- /examples/archive/playground-azimuth-sanity/studio/config/@sanity/default-login.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth-sanity/studio/config/@sanity/default-login.json -------------------------------------------------------------------------------- /examples/archive/playground-azimuth-sanity/studio/config/@sanity/form-builder.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth-sanity/studio/config/@sanity/form-builder.json -------------------------------------------------------------------------------- /examples/archive/playground-azimuth-sanity/studio/deskStructure.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth-sanity/studio/deskStructure.js -------------------------------------------------------------------------------- /examples/archive/playground-azimuth-sanity/studio/migrations/migrate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth-sanity/studio/migrations/migrate.js -------------------------------------------------------------------------------- /examples/archive/playground-azimuth-sanity/studio/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth-sanity/studio/package.json -------------------------------------------------------------------------------- /examples/archive/playground-azimuth-sanity/studio/plugins/.gitkeep: -------------------------------------------------------------------------------- 1 | User-specific packages can be placed here 2 | -------------------------------------------------------------------------------- /examples/archive/playground-azimuth-sanity/studio/sanity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth-sanity/studio/sanity.json -------------------------------------------------------------------------------- /examples/archive/playground-azimuth-sanity/studio/schemas/action.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth-sanity/studio/schemas/action.js -------------------------------------------------------------------------------- /examples/archive/playground-azimuth-sanity/studio/schemas/blog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth-sanity/studio/schemas/blog.js -------------------------------------------------------------------------------- /examples/archive/playground-azimuth-sanity/studio/schemas/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth-sanity/studio/schemas/config.js -------------------------------------------------------------------------------- /examples/archive/playground-azimuth-sanity/studio/schemas/faq_item.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth-sanity/studio/schemas/faq_item.js -------------------------------------------------------------------------------- /examples/archive/playground-azimuth-sanity/studio/schemas/feature_item.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth-sanity/studio/schemas/feature_item.js -------------------------------------------------------------------------------- /examples/archive/playground-azimuth-sanity/studio/schemas/footer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth-sanity/studio/schemas/footer.js -------------------------------------------------------------------------------- /examples/archive/playground-azimuth-sanity/studio/schemas/footer_form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth-sanity/studio/schemas/footer_form.js -------------------------------------------------------------------------------- /examples/archive/playground-azimuth-sanity/studio/schemas/footer_nav.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth-sanity/studio/schemas/footer_nav.js -------------------------------------------------------------------------------- /examples/archive/playground-azimuth-sanity/studio/schemas/footer_text.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth-sanity/studio/schemas/footer_text.js -------------------------------------------------------------------------------- /examples/archive/playground-azimuth-sanity/studio/schemas/form_field.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth-sanity/studio/schemas/form_field.js -------------------------------------------------------------------------------- /examples/archive/playground-azimuth-sanity/studio/schemas/header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth-sanity/studio/schemas/header.js -------------------------------------------------------------------------------- /examples/archive/playground-azimuth-sanity/studio/schemas/landing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth-sanity/studio/schemas/landing.js -------------------------------------------------------------------------------- /examples/archive/playground-azimuth-sanity/studio/schemas/page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth-sanity/studio/schemas/page.js -------------------------------------------------------------------------------- /examples/archive/playground-azimuth-sanity/studio/schemas/person.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth-sanity/studio/schemas/person.js -------------------------------------------------------------------------------- /examples/archive/playground-azimuth-sanity/studio/schemas/post.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth-sanity/studio/schemas/post.js -------------------------------------------------------------------------------- /examples/archive/playground-azimuth-sanity/studio/schemas/pricing_plan.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth-sanity/studio/schemas/pricing_plan.js -------------------------------------------------------------------------------- /examples/archive/playground-azimuth-sanity/studio/schemas/review_item.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth-sanity/studio/schemas/review_item.js -------------------------------------------------------------------------------- /examples/archive/playground-azimuth-sanity/studio/schemas/schema.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth-sanity/studio/schemas/schema.js -------------------------------------------------------------------------------- /examples/archive/playground-azimuth-sanity/studio/schemas/section_contact.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth-sanity/studio/schemas/section_contact.js -------------------------------------------------------------------------------- /examples/archive/playground-azimuth-sanity/studio/schemas/section_content.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth-sanity/studio/schemas/section_content.js -------------------------------------------------------------------------------- /examples/archive/playground-azimuth-sanity/studio/schemas/section_cta.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth-sanity/studio/schemas/section_cta.js -------------------------------------------------------------------------------- /examples/archive/playground-azimuth-sanity/studio/schemas/section_faq.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth-sanity/studio/schemas/section_faq.js -------------------------------------------------------------------------------- /examples/archive/playground-azimuth-sanity/studio/schemas/section_features.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth-sanity/studio/schemas/section_features.js -------------------------------------------------------------------------------- /examples/archive/playground-azimuth-sanity/studio/schemas/section_hero.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth-sanity/studio/schemas/section_hero.js -------------------------------------------------------------------------------- /examples/archive/playground-azimuth-sanity/studio/schemas/section_posts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth-sanity/studio/schemas/section_posts.js -------------------------------------------------------------------------------- /examples/archive/playground-azimuth-sanity/studio/schemas/section_pricing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth-sanity/studio/schemas/section_pricing.js -------------------------------------------------------------------------------- /examples/archive/playground-azimuth-sanity/studio/schemas/section_reviews.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth-sanity/studio/schemas/section_reviews.js -------------------------------------------------------------------------------- /examples/archive/playground-azimuth-sanity/studio/schemas/seo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth-sanity/studio/schemas/seo.js -------------------------------------------------------------------------------- /examples/archive/playground-azimuth-sanity/studio/static/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth-sanity/studio/static/.gitkeep -------------------------------------------------------------------------------- /examples/archive/playground-azimuth-sanity/studio/static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth-sanity/studio/static/favicon.ico -------------------------------------------------------------------------------- /examples/archive/playground-azimuth-sanity/studio/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth-sanity/studio/tsconfig.json -------------------------------------------------------------------------------- /examples/archive/playground-azimuth-sanity/web/contentlayer/contentlayer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth-sanity/web/contentlayer/contentlayer.ts -------------------------------------------------------------------------------- /examples/archive/playground-azimuth-sanity/web/dev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth-sanity/web/dev.js -------------------------------------------------------------------------------- /examples/archive/playground-azimuth-sanity/web/entries.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth-sanity/web/entries.json -------------------------------------------------------------------------------- /examples/archive/playground-azimuth-sanity/web/next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth-sanity/web/next.config.js -------------------------------------------------------------------------------- /examples/archive/playground-azimuth-sanity/web/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth-sanity/web/package.json -------------------------------------------------------------------------------- /examples/archive/playground-azimuth-sanity/web/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth-sanity/web/tsconfig.json -------------------------------------------------------------------------------- /examples/archive/playground-azimuth/content/data/authors/jane-doe.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth/content/data/authors/jane-doe.yaml -------------------------------------------------------------------------------- /examples/archive/playground-azimuth/content/data/authors/john-doe.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth/content/data/authors/john-doe.yaml -------------------------------------------------------------------------------- /examples/archive/playground-azimuth/content/data/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth/content/data/config.json -------------------------------------------------------------------------------- /examples/archive/playground-azimuth/content/pages/about.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth/content/pages/about.md -------------------------------------------------------------------------------- /examples/archive/playground-azimuth/content/pages/blog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth/content/pages/blog.md -------------------------------------------------------------------------------- /examples/archive/playground-azimuth/content/pages/blog/azimuth-improvements.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth/content/pages/blog/azimuth-improvements.md -------------------------------------------------------------------------------- /examples/archive/playground-azimuth/content/pages/blog/customer-loyalty.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth/content/pages/blog/customer-loyalty.md -------------------------------------------------------------------------------- /examples/archive/playground-azimuth/content/pages/blog/design-azimuth.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth/content/pages/blog/design-azimuth.md -------------------------------------------------------------------------------- /examples/archive/playground-azimuth/content/pages/blog/design-team-collaborates.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth/content/pages/blog/design-team-collaborates.md -------------------------------------------------------------------------------- /examples/archive/playground-azimuth/content/pages/blog/sales-as-service.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth/content/pages/blog/sales-as-service.md -------------------------------------------------------------------------------- /examples/archive/playground-azimuth/content/pages/blog/set-big-goals.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth/content/pages/blog/set-big-goals.md -------------------------------------------------------------------------------- /examples/archive/playground-azimuth/content/pages/blog/user-journey-mapping.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth/content/pages/blog/user-journey-mapping.md -------------------------------------------------------------------------------- /examples/archive/playground-azimuth/content/pages/blog/working-from-home.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth/content/pages/blog/working-from-home.md -------------------------------------------------------------------------------- /examples/archive/playground-azimuth/content/pages/contact.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth/content/pages/contact.md -------------------------------------------------------------------------------- /examples/archive/playground-azimuth/content/pages/features.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth/content/pages/features.md -------------------------------------------------------------------------------- /examples/archive/playground-azimuth/content/pages/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth/content/pages/index.md -------------------------------------------------------------------------------- /examples/archive/playground-azimuth/content/pages/pricing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth/content/pages/pricing.md -------------------------------------------------------------------------------- /examples/archive/playground-azimuth/content/pages/privacy-policy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth/content/pages/privacy-policy.md -------------------------------------------------------------------------------- /examples/archive/playground-azimuth/content/pages/signup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth/content/pages/signup.md -------------------------------------------------------------------------------- /examples/archive/playground-azimuth/content/pages/style-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth/content/pages/style-guide.md -------------------------------------------------------------------------------- /examples/archive/playground-azimuth/content/pages/terms-of-service.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth/content/pages/terms-of-service.md -------------------------------------------------------------------------------- /examples/archive/playground-azimuth/contentlayer.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth/contentlayer.config.ts -------------------------------------------------------------------------------- /examples/archive/playground-azimuth/next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth/next-env.d.ts -------------------------------------------------------------------------------- /examples/archive/playground-azimuth/next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth/next.config.js -------------------------------------------------------------------------------- /examples/archive/playground-azimuth/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth/package.json -------------------------------------------------------------------------------- /examples/archive/playground-azimuth/public/images/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth/public/images/1.jpg -------------------------------------------------------------------------------- /examples/archive/playground-azimuth/public/images/10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth/public/images/10.jpg -------------------------------------------------------------------------------- /examples/archive/playground-azimuth/public/images/10_thumb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth/public/images/10_thumb.jpg -------------------------------------------------------------------------------- /examples/archive/playground-azimuth/public/images/11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth/public/images/11.jpg -------------------------------------------------------------------------------- /examples/archive/playground-azimuth/public/images/11_thumb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth/public/images/11_thumb.jpg -------------------------------------------------------------------------------- /examples/archive/playground-azimuth/public/images/12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth/public/images/12.jpg -------------------------------------------------------------------------------- /examples/archive/playground-azimuth/public/images/12_thumb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth/public/images/12_thumb.jpg -------------------------------------------------------------------------------- /examples/archive/playground-azimuth/public/images/1_thumb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth/public/images/1_thumb.jpg -------------------------------------------------------------------------------- /examples/archive/playground-azimuth/public/images/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth/public/images/2.jpg -------------------------------------------------------------------------------- /examples/archive/playground-azimuth/public/images/2_thumb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth/public/images/2_thumb.jpg -------------------------------------------------------------------------------- /examples/archive/playground-azimuth/public/images/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth/public/images/3.jpg -------------------------------------------------------------------------------- /examples/archive/playground-azimuth/public/images/3_thumb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth/public/images/3_thumb.jpg -------------------------------------------------------------------------------- /examples/archive/playground-azimuth/public/images/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth/public/images/4.jpg -------------------------------------------------------------------------------- /examples/archive/playground-azimuth/public/images/4_thumb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth/public/images/4_thumb.jpg -------------------------------------------------------------------------------- /examples/archive/playground-azimuth/public/images/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth/public/images/5.jpg -------------------------------------------------------------------------------- /examples/archive/playground-azimuth/public/images/5_thumb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth/public/images/5_thumb.jpg -------------------------------------------------------------------------------- /examples/archive/playground-azimuth/public/images/6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth/public/images/6.jpg -------------------------------------------------------------------------------- /examples/archive/playground-azimuth/public/images/6_thumb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth/public/images/6_thumb.jpg -------------------------------------------------------------------------------- /examples/archive/playground-azimuth/public/images/7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth/public/images/7.jpg -------------------------------------------------------------------------------- /examples/archive/playground-azimuth/public/images/7_thumb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth/public/images/7_thumb.jpg -------------------------------------------------------------------------------- /examples/archive/playground-azimuth/public/images/8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth/public/images/8.jpg -------------------------------------------------------------------------------- /examples/archive/playground-azimuth/public/images/8_thumb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth/public/images/8_thumb.jpg -------------------------------------------------------------------------------- /examples/archive/playground-azimuth/public/images/9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth/public/images/9.jpg -------------------------------------------------------------------------------- /examples/archive/playground-azimuth/public/images/9_thumb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth/public/images/9_thumb.jpg -------------------------------------------------------------------------------- /examples/archive/playground-azimuth/public/images/about.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth/public/images/about.jpg -------------------------------------------------------------------------------- /examples/archive/playground-azimuth/public/images/author.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth/public/images/author.jpg -------------------------------------------------------------------------------- /examples/archive/playground-azimuth/public/images/avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth/public/images/avatar.png -------------------------------------------------------------------------------- /examples/archive/playground-azimuth/public/images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth/public/images/favicon.png -------------------------------------------------------------------------------- /examples/archive/playground-azimuth/public/images/feature1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth/public/images/feature1.png -------------------------------------------------------------------------------- /examples/archive/playground-azimuth/public/images/feature2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth/public/images/feature2.png -------------------------------------------------------------------------------- /examples/archive/playground-azimuth/public/images/feature3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth/public/images/feature3.png -------------------------------------------------------------------------------- /examples/archive/playground-azimuth/public/images/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth/public/images/hero.png -------------------------------------------------------------------------------- /examples/archive/playground-azimuth/public/images/intro.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth/public/images/intro.jpg -------------------------------------------------------------------------------- /examples/archive/playground-azimuth/public/images/logo-alt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth/public/images/logo-alt.svg -------------------------------------------------------------------------------- /examples/archive/playground-azimuth/public/images/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth/public/images/logo.svg -------------------------------------------------------------------------------- /examples/archive/playground-azimuth/public/images/review1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth/public/images/review1.jpg -------------------------------------------------------------------------------- /examples/archive/playground-azimuth/public/images/review2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth/public/images/review2.jpg -------------------------------------------------------------------------------- /examples/archive/playground-azimuth/public/images/review3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth/public/images/review3.jpg -------------------------------------------------------------------------------- /examples/archive/playground-azimuth/public/js/init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth/public/js/init.js -------------------------------------------------------------------------------- /examples/archive/playground-azimuth/public/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth/public/js/main.js -------------------------------------------------------------------------------- /examples/archive/playground-azimuth/public/js/plugins.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth/public/js/plugins.js -------------------------------------------------------------------------------- /examples/archive/playground-azimuth/src/components/Action.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth/src/components/Action.tsx -------------------------------------------------------------------------------- /examples/archive/playground-azimuth/src/components/ActionLink.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth/src/components/ActionLink.tsx -------------------------------------------------------------------------------- /examples/archive/playground-azimuth/src/components/BlogPostFooter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth/src/components/BlogPostFooter.tsx -------------------------------------------------------------------------------- /examples/archive/playground-azimuth/src/components/FormField.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth/src/components/FormField.tsx -------------------------------------------------------------------------------- /examples/archive/playground-azimuth/src/components/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth/src/components/Header.tsx -------------------------------------------------------------------------------- /examples/archive/playground-azimuth/src/components/Icon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth/src/components/Icon.tsx -------------------------------------------------------------------------------- /examples/archive/playground-azimuth/src/components/Layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth/src/components/Layout.tsx -------------------------------------------------------------------------------- /examples/archive/playground-azimuth/src/components/footer/Footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth/src/components/footer/Footer.tsx -------------------------------------------------------------------------------- /examples/archive/playground-azimuth/src/components/footer/FooterForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth/src/components/footer/FooterForm.tsx -------------------------------------------------------------------------------- /examples/archive/playground-azimuth/src/components/footer/FooterNav.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth/src/components/footer/FooterNav.tsx -------------------------------------------------------------------------------- /examples/archive/playground-azimuth/src/components/footer/FooterText.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth/src/components/footer/FooterText.tsx -------------------------------------------------------------------------------- /examples/archive/playground-azimuth/src/components/landing-sections/CtaButtons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth/src/components/landing-sections/CtaButtons.tsx -------------------------------------------------------------------------------- /examples/archive/playground-azimuth/src/components/landing-sections/SectionCta.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth/src/components/landing-sections/SectionCta.tsx -------------------------------------------------------------------------------- /examples/archive/playground-azimuth/src/components/landing-sections/SectionFaq.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth/src/components/landing-sections/SectionFaq.tsx -------------------------------------------------------------------------------- /examples/archive/playground-azimuth/src/contentlayer/documents/Blog.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth/src/contentlayer/documents/Blog.ts -------------------------------------------------------------------------------- /examples/archive/playground-azimuth/src/contentlayer/documents/Config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth/src/contentlayer/documents/Config.ts -------------------------------------------------------------------------------- /examples/archive/playground-azimuth/src/contentlayer/documents/Landing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth/src/contentlayer/documents/Landing.ts -------------------------------------------------------------------------------- /examples/archive/playground-azimuth/src/contentlayer/documents/Page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth/src/contentlayer/documents/Page.ts -------------------------------------------------------------------------------- /examples/archive/playground-azimuth/src/contentlayer/documents/Person.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth/src/contentlayer/documents/Person.ts -------------------------------------------------------------------------------- /examples/archive/playground-azimuth/src/contentlayer/documents/Post.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth/src/contentlayer/documents/Post.ts -------------------------------------------------------------------------------- /examples/archive/playground-azimuth/src/contentlayer/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth/src/contentlayer/index.ts -------------------------------------------------------------------------------- /examples/archive/playground-azimuth/src/contentlayer/nested/Action.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth/src/contentlayer/nested/Action.ts -------------------------------------------------------------------------------- /examples/archive/playground-azimuth/src/contentlayer/nested/FormField.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth/src/contentlayer/nested/FormField.ts -------------------------------------------------------------------------------- /examples/archive/playground-azimuth/src/contentlayer/nested/SEO.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth/src/contentlayer/nested/SEO.ts -------------------------------------------------------------------------------- /examples/archive/playground-azimuth/src/contentlayer/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth/src/contentlayer/utils.ts -------------------------------------------------------------------------------- /examples/archive/playground-azimuth/src/layouts/BlogLayout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth/src/layouts/BlogLayout.tsx -------------------------------------------------------------------------------- /examples/archive/playground-azimuth/src/layouts/LandingLayout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth/src/layouts/LandingLayout.tsx -------------------------------------------------------------------------------- /examples/archive/playground-azimuth/src/layouts/PageLayout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth/src/layouts/PageLayout.tsx -------------------------------------------------------------------------------- /examples/archive/playground-azimuth/src/layouts/PostLayout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth/src/layouts/PostLayout.tsx -------------------------------------------------------------------------------- /examples/archive/playground-azimuth/src/pages/[[...slug]].tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth/src/pages/[[...slug]].tsx -------------------------------------------------------------------------------- /examples/archive/playground-azimuth/src/pages/_app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth/src/pages/_app.tsx -------------------------------------------------------------------------------- /examples/archive/playground-azimuth/src/sass/imports/_banner.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth/src/sass/imports/_banner.scss -------------------------------------------------------------------------------- /examples/archive/playground-azimuth/src/sass/imports/_buttons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth/src/sass/imports/_buttons.scss -------------------------------------------------------------------------------- /examples/archive/playground-azimuth/src/sass/imports/_footer.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth/src/sass/imports/_footer.scss -------------------------------------------------------------------------------- /examples/archive/playground-azimuth/src/sass/imports/_forms.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth/src/sass/imports/_forms.scss -------------------------------------------------------------------------------- /examples/archive/playground-azimuth/src/sass/imports/_functions.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth/src/sass/imports/_functions.scss -------------------------------------------------------------------------------- /examples/archive/playground-azimuth/src/sass/imports/_general.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth/src/sass/imports/_general.scss -------------------------------------------------------------------------------- /examples/archive/playground-azimuth/src/sass/imports/_header.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth/src/sass/imports/_header.scss -------------------------------------------------------------------------------- /examples/archive/playground-azimuth/src/sass/imports/_helpers.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth/src/sass/imports/_helpers.scss -------------------------------------------------------------------------------- /examples/archive/playground-azimuth/src/sass/imports/_icons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth/src/sass/imports/_icons.scss -------------------------------------------------------------------------------- /examples/archive/playground-azimuth/src/sass/imports/_menus.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth/src/sass/imports/_menus.scss -------------------------------------------------------------------------------- /examples/archive/playground-azimuth/src/sass/imports/_palettes.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth/src/sass/imports/_palettes.scss -------------------------------------------------------------------------------- /examples/archive/playground-azimuth/src/sass/imports/_posts.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth/src/sass/imports/_posts.scss -------------------------------------------------------------------------------- /examples/archive/playground-azimuth/src/sass/imports/_reset.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth/src/sass/imports/_reset.scss -------------------------------------------------------------------------------- /examples/archive/playground-azimuth/src/sass/imports/_sections.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth/src/sass/imports/_sections.scss -------------------------------------------------------------------------------- /examples/archive/playground-azimuth/src/sass/imports/_structure.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth/src/sass/imports/_structure.scss -------------------------------------------------------------------------------- /examples/archive/playground-azimuth/src/sass/imports/_tables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth/src/sass/imports/_tables.scss -------------------------------------------------------------------------------- /examples/archive/playground-azimuth/src/sass/imports/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth/src/sass/imports/_variables.scss -------------------------------------------------------------------------------- /examples/archive/playground-azimuth/src/sass/main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth/src/sass/main.scss -------------------------------------------------------------------------------- /examples/archive/playground-azimuth/src/utils/classNames.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth/src/utils/classNames.tsx -------------------------------------------------------------------------------- /examples/archive/playground-azimuth/src/utils/htmlToReact.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth/src/utils/htmlToReact.tsx -------------------------------------------------------------------------------- /examples/archive/playground-azimuth/src/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth/src/utils/index.ts -------------------------------------------------------------------------------- /examples/archive/playground-azimuth/src/utils/link.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth/src/utils/link.tsx -------------------------------------------------------------------------------- /examples/archive/playground-azimuth/src/utils/markdownify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth/src/utils/markdownify.js -------------------------------------------------------------------------------- /examples/archive/playground-azimuth/src/utils/next.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth/src/utils/next.ts -------------------------------------------------------------------------------- /examples/archive/playground-azimuth/src/utils/withPrefix.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth/src/utils/withPrefix.ts -------------------------------------------------------------------------------- /examples/archive/playground-azimuth/stackbit.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth/stackbit.yaml -------------------------------------------------------------------------------- /examples/archive/playground-azimuth/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-azimuth/tsconfig.json -------------------------------------------------------------------------------- /examples/archive/playground-contentful-starter/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-contentful-starter/.gitignore -------------------------------------------------------------------------------- /examples/archive/playground-contentful-starter/.gitpod.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-contentful-starter/.gitpod.yml -------------------------------------------------------------------------------- /examples/archive/playground-contentful-starter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-contentful-starter/README.md -------------------------------------------------------------------------------- /examples/archive/playground-contentful-starter/components/date.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-contentful-starter/components/date.tsx -------------------------------------------------------------------------------- /examples/archive/playground-contentful-starter/components/layout.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-contentful-starter/components/layout.module.css -------------------------------------------------------------------------------- /examples/archive/playground-contentful-starter/components/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-contentful-starter/components/layout.tsx -------------------------------------------------------------------------------- /examples/archive/playground-contentful-starter/contentlayer.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-contentful-starter/contentlayer.config.ts -------------------------------------------------------------------------------- /examples/archive/playground-contentful-starter/next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-contentful-starter/next-env.d.ts -------------------------------------------------------------------------------- /examples/archive/playground-contentful-starter/next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-contentful-starter/next.config.js -------------------------------------------------------------------------------- /examples/archive/playground-contentful-starter/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-contentful-starter/package.json -------------------------------------------------------------------------------- /examples/archive/playground-contentful-starter/pages/_app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-contentful-starter/pages/_app.tsx -------------------------------------------------------------------------------- /examples/archive/playground-contentful-starter/pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-contentful-starter/pages/index.tsx -------------------------------------------------------------------------------- /examples/archive/playground-contentful-starter/pages/posts/[id].tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-contentful-starter/pages/posts/[id].tsx -------------------------------------------------------------------------------- /examples/archive/playground-contentful-starter/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-contentful-starter/public/favicon.ico -------------------------------------------------------------------------------- /examples/archive/playground-contentful-starter/public/images/profile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-contentful-starter/public/images/profile.jpg -------------------------------------------------------------------------------- /examples/archive/playground-contentful-starter/stackbit.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-contentful-starter/stackbit.yaml -------------------------------------------------------------------------------- /examples/archive/playground-contentful-starter/styles/global.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-contentful-starter/styles/global.css -------------------------------------------------------------------------------- /examples/archive/playground-contentful-starter/styles/utils.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-contentful-starter/styles/utils.module.css -------------------------------------------------------------------------------- /examples/archive/playground-contentful-starter/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/playground-contentful-starter/tsconfig.json -------------------------------------------------------------------------------- /examples/archive/starter-js/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/starter-js/.gitignore -------------------------------------------------------------------------------- /examples/archive/starter-js/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/starter-js/README.md -------------------------------------------------------------------------------- /examples/archive/starter-js/components/date.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/starter-js/components/date.jsx -------------------------------------------------------------------------------- /examples/archive/starter-js/components/layout.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/starter-js/components/layout.jsx -------------------------------------------------------------------------------- /examples/archive/starter-js/components/layout.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/starter-js/components/layout.module.css -------------------------------------------------------------------------------- /examples/archive/starter-js/contentlayer.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/starter-js/contentlayer.config.js -------------------------------------------------------------------------------- /examples/archive/starter-js/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/starter-js/jsconfig.json -------------------------------------------------------------------------------- /examples/archive/starter-js/next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/starter-js/next.config.js -------------------------------------------------------------------------------- /examples/archive/starter-js/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/starter-js/package.json -------------------------------------------------------------------------------- /examples/archive/starter-js/pages/_app.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/starter-js/pages/_app.jsx -------------------------------------------------------------------------------- /examples/archive/starter-js/pages/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/starter-js/pages/index.jsx -------------------------------------------------------------------------------- /examples/archive/starter-js/pages/posts/[id].jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/starter-js/pages/posts/[id].jsx -------------------------------------------------------------------------------- /examples/archive/starter-js/posts/pre-rendering.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/starter-js/posts/pre-rendering.md -------------------------------------------------------------------------------- /examples/archive/starter-js/posts/ssg-ssr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/starter-js/posts/ssg-ssr.md -------------------------------------------------------------------------------- /examples/archive/starter-js/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/starter-js/public/favicon.ico -------------------------------------------------------------------------------- /examples/archive/starter-js/public/images/profile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/starter-js/public/images/profile.jpg -------------------------------------------------------------------------------- /examples/archive/starter-js/styles/global.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/starter-js/styles/global.css -------------------------------------------------------------------------------- /examples/archive/starter-js/styles/utils.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/starter-js/styles/utils.module.css -------------------------------------------------------------------------------- /examples/archive/starter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/starter/README.md -------------------------------------------------------------------------------- /examples/archive/starter/components/date.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/starter/components/date.tsx -------------------------------------------------------------------------------- /examples/archive/starter/components/layout.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/starter/components/layout.module.css -------------------------------------------------------------------------------- /examples/archive/starter/components/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/starter/components/layout.tsx -------------------------------------------------------------------------------- /examples/archive/starter/contentlayer.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/starter/contentlayer.config.ts -------------------------------------------------------------------------------- /examples/archive/starter/next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/starter/next-env.d.ts -------------------------------------------------------------------------------- /examples/archive/starter/next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/starter/next.config.js -------------------------------------------------------------------------------- /examples/archive/starter/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/starter/package.json -------------------------------------------------------------------------------- /examples/archive/starter/pages/_app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/starter/pages/_app.tsx -------------------------------------------------------------------------------- /examples/archive/starter/pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/starter/pages/index.tsx -------------------------------------------------------------------------------- /examples/archive/starter/pages/posts/[id].tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/starter/pages/posts/[id].tsx -------------------------------------------------------------------------------- /examples/archive/starter/posts/pre-rendering.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/starter/posts/pre-rendering.md -------------------------------------------------------------------------------- /examples/archive/starter/posts/ssg-ssr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/starter/posts/ssg-ssr.md -------------------------------------------------------------------------------- /examples/archive/starter/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/starter/public/favicon.ico -------------------------------------------------------------------------------- /examples/archive/starter/public/images/profile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/starter/public/images/profile.jpg -------------------------------------------------------------------------------- /examples/archive/starter/styles/global.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/starter/styles/global.css -------------------------------------------------------------------------------- /examples/archive/starter/styles/utils.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/starter/styles/utils.module.css -------------------------------------------------------------------------------- /examples/archive/starter/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/archive/starter/tsconfig.json -------------------------------------------------------------------------------- /examples/next-images/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/next-images/.gitignore -------------------------------------------------------------------------------- /examples/next-images/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/next-images/app/layout.tsx -------------------------------------------------------------------------------- /examples/next-images/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/next-images/app/page.tsx -------------------------------------------------------------------------------- /examples/next-images/app/posts/[slug]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/next-images/app/posts/[slug]/page.tsx -------------------------------------------------------------------------------- /examples/next-images/components/Button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/next-images/components/Button.tsx -------------------------------------------------------------------------------- /examples/next-images/components/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/next-images/components/Header.tsx -------------------------------------------------------------------------------- /examples/next-images/contentlayer.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/next-images/contentlayer.config.ts -------------------------------------------------------------------------------- /examples/next-images/next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/next-images/next-env.d.ts -------------------------------------------------------------------------------- /examples/next-images/next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/next-images/next.config.js -------------------------------------------------------------------------------- /examples/next-images/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/next-images/package.json -------------------------------------------------------------------------------- /examples/next-images/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/next-images/postcss.config.js -------------------------------------------------------------------------------- /examples/next-images/posts/change-me.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/next-images/posts/change-me.mdx -------------------------------------------------------------------------------- /examples/next-images/posts/click-me.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/next-images/posts/click-me.mdx -------------------------------------------------------------------------------- /examples/next-images/posts/what-is-contentlayer.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/next-images/posts/what-is-contentlayer.mdx -------------------------------------------------------------------------------- /examples/next-images/public/images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/next-images/public/images/favicon.png -------------------------------------------------------------------------------- /examples/next-images/public/images/mark-neal-unsplash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/next-images/public/images/mark-neal-unsplash.jpg -------------------------------------------------------------------------------- /examples/next-images/styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/next-images/styles/globals.css -------------------------------------------------------------------------------- /examples/next-images/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/next-images/tsconfig.json -------------------------------------------------------------------------------- /examples/next-rsc-dynamic/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/next-rsc-dynamic/.gitignore -------------------------------------------------------------------------------- /examples/next-rsc-dynamic/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/next-rsc-dynamic/.vscode/settings.json -------------------------------------------------------------------------------- /examples/next-rsc-dynamic/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/next-rsc-dynamic/README.md -------------------------------------------------------------------------------- /examples/next-rsc-dynamic/app/[...slug]/head.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/next-rsc-dynamic/app/[...slug]/head.tsx -------------------------------------------------------------------------------- /examples/next-rsc-dynamic/app/[...slug]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/next-rsc-dynamic/app/[...slug]/page.tsx -------------------------------------------------------------------------------- /examples/next-rsc-dynamic/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/next-rsc-dynamic/app/layout.tsx -------------------------------------------------------------------------------- /examples/next-rsc-dynamic/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/next-rsc-dynamic/app/page.tsx -------------------------------------------------------------------------------- /examples/next-rsc-dynamic/app/v/[tag]/[...slug]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/next-rsc-dynamic/app/v/[tag]/[...slug]/page.tsx -------------------------------------------------------------------------------- /examples/next-rsc-dynamic/app/v/[tag]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/next-rsc-dynamic/app/v/[tag]/page.tsx -------------------------------------------------------------------------------- /examples/next-rsc-dynamic/app/v/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/next-rsc-dynamic/app/v/page.tsx -------------------------------------------------------------------------------- /examples/next-rsc-dynamic/components/Button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/next-rsc-dynamic/components/Button.tsx -------------------------------------------------------------------------------- /examples/next-rsc-dynamic/components/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/next-rsc-dynamic/components/Header.tsx -------------------------------------------------------------------------------- /examples/next-rsc-dynamic/content/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/next-rsc-dynamic/contentlayer.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/next-rsc-dynamic/contentlayer.config.ts -------------------------------------------------------------------------------- /examples/next-rsc-dynamic/next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/next-rsc-dynamic/next-env.d.ts -------------------------------------------------------------------------------- /examples/next-rsc-dynamic/next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/next-rsc-dynamic/next.config.js -------------------------------------------------------------------------------- /examples/next-rsc-dynamic/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/next-rsc-dynamic/package.json -------------------------------------------------------------------------------- /examples/next-rsc-dynamic/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/next-rsc-dynamic/postcss.config.js -------------------------------------------------------------------------------- /examples/next-rsc-dynamic/posts/change-me.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/next-rsc-dynamic/posts/change-me.md -------------------------------------------------------------------------------- /examples/next-rsc-dynamic/posts/click-me.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/next-rsc-dynamic/posts/click-me.md -------------------------------------------------------------------------------- /examples/next-rsc-dynamic/posts/what-is-contentlayer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/next-rsc-dynamic/posts/what-is-contentlayer.md -------------------------------------------------------------------------------- /examples/next-rsc-dynamic/public/images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/next-rsc-dynamic/public/images/favicon.png -------------------------------------------------------------------------------- /examples/next-rsc-dynamic/styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/next-rsc-dynamic/styles/globals.css -------------------------------------------------------------------------------- /examples/next-rsc-dynamic/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/next-rsc-dynamic/tsconfig.json -------------------------------------------------------------------------------- /examples/node-script-mdx/contentlayer.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/node-script-mdx/contentlayer.config.ts -------------------------------------------------------------------------------- /examples/node-script-mdx/my-script.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/node-script-mdx/my-script.mjs -------------------------------------------------------------------------------- /examples/node-script-mdx/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/node-script-mdx/package.json -------------------------------------------------------------------------------- /examples/node-script-mdx/posts/change-me.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/node-script-mdx/posts/change-me.mdx -------------------------------------------------------------------------------- /examples/node-script-mdx/posts/click-me.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/node-script-mdx/posts/click-me.mdx -------------------------------------------------------------------------------- /examples/node-script-mdx/posts/what-is-contentlayer.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/node-script-mdx/posts/what-is-contentlayer.mdx -------------------------------------------------------------------------------- /examples/node-script-remote-content/.gitignore: -------------------------------------------------------------------------------- 1 | nextjs-repo -------------------------------------------------------------------------------- /examples/node-script-remote-content/contentlayer.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/node-script-remote-content/contentlayer.config.ts -------------------------------------------------------------------------------- /examples/node-script-remote-content/my-script.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/node-script-remote-content/my-script.mjs -------------------------------------------------------------------------------- /examples/node-script-remote-content/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/node-script-remote-content/package.json -------------------------------------------------------------------------------- /examples/node-script/contentlayer.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/node-script/contentlayer.config.ts -------------------------------------------------------------------------------- /examples/node-script/my-script.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/node-script/my-script.mjs -------------------------------------------------------------------------------- /examples/node-script/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/node-script/package.json -------------------------------------------------------------------------------- /examples/node-script/posts/change-me.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/node-script/posts/change-me.md -------------------------------------------------------------------------------- /examples/node-script/posts/click-me.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/node-script/posts/click-me.md -------------------------------------------------------------------------------- /examples/node-script/posts/what-is-contentlayer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/examples/node-script/posts/what-is-contentlayer.md -------------------------------------------------------------------------------- /flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/flake.lock -------------------------------------------------------------------------------- /flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/flake.nix -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/package.json -------------------------------------------------------------------------------- /packages/@contentlayer/cli/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/packages/@contentlayer/cli/README.md -------------------------------------------------------------------------------- /packages/@contentlayer/cli/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/packages/@contentlayer/cli/package.json -------------------------------------------------------------------------------- /packages/@contentlayer/cli/src/commands/BuildCommand.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/packages/@contentlayer/cli/src/commands/BuildCommand.ts -------------------------------------------------------------------------------- /packages/@contentlayer/cli/src/commands/DefaultCommand.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/packages/@contentlayer/cli/src/commands/DefaultCommand.ts -------------------------------------------------------------------------------- /packages/@contentlayer/cli/src/commands/DevCommand.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/packages/@contentlayer/cli/src/commands/DevCommand.ts -------------------------------------------------------------------------------- /packages/@contentlayer/cli/src/commands/PostInstallCommand.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/packages/@contentlayer/cli/src/commands/PostInstallCommand.ts -------------------------------------------------------------------------------- /packages/@contentlayer/cli/src/commands/_BaseCommand.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/packages/@contentlayer/cli/src/commands/_BaseCommand.ts -------------------------------------------------------------------------------- /packages/@contentlayer/cli/src/global.d.ts: -------------------------------------------------------------------------------- 1 | declare module 'eval' 2 | -------------------------------------------------------------------------------- /packages/@contentlayer/cli/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/packages/@contentlayer/cli/src/index.ts -------------------------------------------------------------------------------- /packages/@contentlayer/cli/src/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/packages/@contentlayer/cli/src/lib/utils.ts -------------------------------------------------------------------------------- /packages/@contentlayer/cli/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/packages/@contentlayer/cli/tsconfig.json -------------------------------------------------------------------------------- /packages/@contentlayer/client/.gitignore: -------------------------------------------------------------------------------- 1 | /types -------------------------------------------------------------------------------- /packages/@contentlayer/client/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/packages/@contentlayer/client/package.json -------------------------------------------------------------------------------- /packages/@contentlayer/client/src/guards.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/packages/@contentlayer/client/src/guards.ts -------------------------------------------------------------------------------- /packages/@contentlayer/client/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/packages/@contentlayer/client/src/index.ts -------------------------------------------------------------------------------- /packages/@contentlayer/client/src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/packages/@contentlayer/client/src/utils.ts -------------------------------------------------------------------------------- /packages/@contentlayer/client/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/packages/@contentlayer/client/tsconfig.json -------------------------------------------------------------------------------- /packages/@contentlayer/core/client.d.ts: -------------------------------------------------------------------------------- 1 | export * from './dist/client.js' 2 | -------------------------------------------------------------------------------- /packages/@contentlayer/core/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/packages/@contentlayer/core/package.json -------------------------------------------------------------------------------- /packages/@contentlayer/core/src/ArtifactsDir.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/packages/@contentlayer/core/src/ArtifactsDir.ts -------------------------------------------------------------------------------- /packages/@contentlayer/core/src/DataCache.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/packages/@contentlayer/core/src/DataCache.ts -------------------------------------------------------------------------------- /packages/@contentlayer/core/src/_ArtifactsDir.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/packages/@contentlayer/core/src/_ArtifactsDir.ts -------------------------------------------------------------------------------- /packages/@contentlayer/core/src/ambient.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/packages/@contentlayer/core/src/ambient.d.ts -------------------------------------------------------------------------------- /packages/@contentlayer/core/src/client.ts: -------------------------------------------------------------------------------- 1 | export { getMDXComponent } from 'mdx-bundler/client/index.js' 2 | -------------------------------------------------------------------------------- /packages/@contentlayer/core/src/cwd.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/packages/@contentlayer/core/src/cwd.ts -------------------------------------------------------------------------------- /packages/@contentlayer/core/src/data-types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/packages/@contentlayer/core/src/data-types.ts -------------------------------------------------------------------------------- /packages/@contentlayer/core/src/dynamic-build.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/packages/@contentlayer/core/src/dynamic-build.ts -------------------------------------------------------------------------------- /packages/@contentlayer/core/src/errors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/packages/@contentlayer/core/src/errors.ts -------------------------------------------------------------------------------- /packages/@contentlayer/core/src/gen.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/packages/@contentlayer/core/src/gen.ts -------------------------------------------------------------------------------- /packages/@contentlayer/core/src/generation/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/packages/@contentlayer/core/src/generation/common.ts -------------------------------------------------------------------------------- /packages/@contentlayer/core/src/generation/generate-dotpkg.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/packages/@contentlayer/core/src/generation/generate-dotpkg.ts -------------------------------------------------------------------------------- /packages/@contentlayer/core/src/generation/generate-types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/packages/@contentlayer/core/src/generation/generate-types.ts -------------------------------------------------------------------------------- /packages/@contentlayer/core/src/getConfig/esbuild.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/packages/@contentlayer/core/src/getConfig/esbuild.ts -------------------------------------------------------------------------------- /packages/@contentlayer/core/src/getConfig/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/packages/@contentlayer/core/src/getConfig/index.ts -------------------------------------------------------------------------------- /packages/@contentlayer/core/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/packages/@contentlayer/core/src/index.ts -------------------------------------------------------------------------------- /packages/@contentlayer/core/src/markdown/markdown.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/packages/@contentlayer/core/src/markdown/markdown.ts -------------------------------------------------------------------------------- /packages/@contentlayer/core/src/markdown/mdx.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/packages/@contentlayer/core/src/markdown/mdx.ts -------------------------------------------------------------------------------- /packages/@contentlayer/core/src/markdown/unified.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/packages/@contentlayer/core/src/markdown/unified.ts -------------------------------------------------------------------------------- /packages/@contentlayer/core/src/plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/packages/@contentlayer/core/src/plugin.ts -------------------------------------------------------------------------------- /packages/@contentlayer/core/src/runMain.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/packages/@contentlayer/core/src/runMain.ts -------------------------------------------------------------------------------- /packages/@contentlayer/core/src/schema/field.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/packages/@contentlayer/core/src/schema/field.ts -------------------------------------------------------------------------------- /packages/@contentlayer/core/src/schema/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/packages/@contentlayer/core/src/schema/index.ts -------------------------------------------------------------------------------- /packages/@contentlayer/core/src/schema/stackbit-extension.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/packages/@contentlayer/core/src/schema/stackbit-extension.ts -------------------------------------------------------------------------------- /packages/@contentlayer/core/src/schema/validate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/packages/@contentlayer/core/src/schema/validate.ts -------------------------------------------------------------------------------- /packages/@contentlayer/core/src/validate-tsconfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/packages/@contentlayer/core/src/validate-tsconfig.ts -------------------------------------------------------------------------------- /packages/@contentlayer/core/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/packages/@contentlayer/core/tsconfig.json -------------------------------------------------------------------------------- /packages/@contentlayer/experimental-source-files-stackbit/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/packages/@contentlayer/experimental-source-files-stackbit/package.json -------------------------------------------------------------------------------- /packages/@contentlayer/experimental-source-files-stackbit/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/packages/@contentlayer/experimental-source-files-stackbit/src/index.ts -------------------------------------------------------------------------------- /packages/@contentlayer/experimental-source-files-stackbit/src/mapping.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/packages/@contentlayer/experimental-source-files-stackbit/src/mapping.ts -------------------------------------------------------------------------------- /packages/@contentlayer/experimental-source-files-stackbit/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/packages/@contentlayer/experimental-source-files-stackbit/tsconfig.json -------------------------------------------------------------------------------- /packages/@contentlayer/experimental-source-files-stackbit/vitest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/packages/@contentlayer/experimental-source-files-stackbit/vitest.config.ts -------------------------------------------------------------------------------- /packages/@contentlayer/source-contentful/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/packages/@contentlayer/source-contentful/package.json -------------------------------------------------------------------------------- /packages/@contentlayer/source-contentful/src/contentful.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/packages/@contentlayer/source-contentful/src/contentful.ts -------------------------------------------------------------------------------- /packages/@contentlayer/source-contentful/src/errors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/packages/@contentlayer/source-contentful/src/errors.ts -------------------------------------------------------------------------------- /packages/@contentlayer/source-contentful/src/fetchData/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/packages/@contentlayer/source-contentful/src/fetchData/index.ts -------------------------------------------------------------------------------- /packages/@contentlayer/source-contentful/src/fetchData/mapping.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/packages/@contentlayer/source-contentful/src/fetchData/mapping.ts -------------------------------------------------------------------------------- /packages/@contentlayer/source-contentful/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/packages/@contentlayer/source-contentful/src/index.ts -------------------------------------------------------------------------------- /packages/@contentlayer/source-contentful/src/provideSchema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/packages/@contentlayer/source-contentful/src/provideSchema.ts -------------------------------------------------------------------------------- /packages/@contentlayer/source-contentful/src/schemaOverrides.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/packages/@contentlayer/source-contentful/src/schemaOverrides.ts -------------------------------------------------------------------------------- /packages/@contentlayer/source-contentful/src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/packages/@contentlayer/source-contentful/src/types.ts -------------------------------------------------------------------------------- /packages/@contentlayer/source-contentful/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/packages/@contentlayer/source-contentful/tsconfig.json -------------------------------------------------------------------------------- /packages/@contentlayer/source-files/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/packages/@contentlayer/source-files/package.json -------------------------------------------------------------------------------- /packages/@contentlayer/source-files/src/__test__/errors/aggregate.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/packages/@contentlayer/source-files/src/__test__/errors/aggregate.spec.ts -------------------------------------------------------------------------------- /packages/@contentlayer/source-files/src/__test__/errors/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/packages/@contentlayer/source-files/src/__test__/errors/utils.ts -------------------------------------------------------------------------------- /packages/@contentlayer/source-files/src/__test__/fetchData/fixtures/3-small-files/a.md: -------------------------------------------------------------------------------- 1 | Hello world 2 | -------------------------------------------------------------------------------- /packages/@contentlayer/source-files/src/__test__/fetchData/fixtures/3-small-files/b.md: -------------------------------------------------------------------------------- 1 | --- 2 | --- 3 | 4 | Hello world 5 | -------------------------------------------------------------------------------- /packages/@contentlayer/source-files/src/__test__/fetchData/fixtures/misc-files/empty-json/empty.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/@contentlayer/source-files/src/__test__/fetchData/fixtures/misc-files/empty-markdown/empty.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/@contentlayer/source-files/src/__test__/fetchData/fixtures/misc-files/empty-mdx/empty.mdx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/@contentlayer/source-files/src/__test__/fetchData/fixtures/misc-files/empty-yaml/empty.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/@contentlayer/source-files/src/__test__/fetchData/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/packages/@contentlayer/source-files/src/__test__/fetchData/utils.ts -------------------------------------------------------------------------------- /packages/@contentlayer/source-files/src/__test__/mapping/getFlattenedPath.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/packages/@contentlayer/source-files/src/__test__/mapping/getFlattenedPath.spec.ts -------------------------------------------------------------------------------- /packages/@contentlayer/source-files/src/__test__/type-generation/basic.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/packages/@contentlayer/source-files/src/__test__/type-generation/basic.spec.ts -------------------------------------------------------------------------------- /packages/@contentlayer/source-files/src/errors/aggregate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/packages/@contentlayer/source-files/src/errors/aggregate.ts -------------------------------------------------------------------------------- /packages/@contentlayer/source-files/src/errors/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/packages/@contentlayer/source-files/src/errors/index.ts -------------------------------------------------------------------------------- /packages/@contentlayer/source-files/src/fetchData/DocumentContext.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/packages/@contentlayer/source-files/src/fetchData/DocumentContext.ts -------------------------------------------------------------------------------- /packages/@contentlayer/source-files/src/fetchData/DocumentTypeMap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/packages/@contentlayer/source-files/src/fetchData/DocumentTypeMap.ts -------------------------------------------------------------------------------- /packages/@contentlayer/source-files/src/fetchData/fetchAllDocuments.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/packages/@contentlayer/source-files/src/fetchData/fetchAllDocuments.ts -------------------------------------------------------------------------------- /packages/@contentlayer/source-files/src/fetchData/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/packages/@contentlayer/source-files/src/fetchData/index.ts -------------------------------------------------------------------------------- /packages/@contentlayer/source-files/src/fetchData/makeCacheItemFromFilePath.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/packages/@contentlayer/source-files/src/fetchData/makeCacheItemFromFilePath.ts -------------------------------------------------------------------------------- /packages/@contentlayer/source-files/src/fetchData/mapping/field-date.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/packages/@contentlayer/source-files/src/fetchData/mapping/field-date.ts -------------------------------------------------------------------------------- /packages/@contentlayer/source-files/src/fetchData/mapping/field-image.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/packages/@contentlayer/source-files/src/fetchData/mapping/field-image.ts -------------------------------------------------------------------------------- /packages/@contentlayer/source-files/src/fetchData/mapping/field-markdown.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/packages/@contentlayer/source-files/src/fetchData/mapping/field-markdown.ts -------------------------------------------------------------------------------- /packages/@contentlayer/source-files/src/fetchData/mapping/field-mdx.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/packages/@contentlayer/source-files/src/fetchData/mapping/field-mdx.ts -------------------------------------------------------------------------------- /packages/@contentlayer/source-files/src/fetchData/mapping/imagescript.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/packages/@contentlayer/source-files/src/fetchData/mapping/imagescript.d.ts -------------------------------------------------------------------------------- /packages/@contentlayer/source-files/src/fetchData/mapping/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/packages/@contentlayer/source-files/src/fetchData/mapping/index.ts -------------------------------------------------------------------------------- /packages/@contentlayer/source-files/src/fetchData/mapping/parseFieldData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/packages/@contentlayer/source-files/src/fetchData/mapping/parseFieldData.ts -------------------------------------------------------------------------------- /packages/@contentlayer/source-files/src/fetchData/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/packages/@contentlayer/source-files/src/fetchData/types.ts -------------------------------------------------------------------------------- /packages/@contentlayer/source-files/src/fetchData/validateDocumentData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/packages/@contentlayer/source-files/src/fetchData/validateDocumentData.ts -------------------------------------------------------------------------------- /packages/@contentlayer/source-files/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/packages/@contentlayer/source-files/src/index.ts -------------------------------------------------------------------------------- /packages/@contentlayer/source-files/src/schema/defs/computed-field.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/packages/@contentlayer/source-files/src/schema/defs/computed-field.ts -------------------------------------------------------------------------------- /packages/@contentlayer/source-files/src/schema/defs/field.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/packages/@contentlayer/source-files/src/schema/defs/field.ts -------------------------------------------------------------------------------- /packages/@contentlayer/source-files/src/schema/defs/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/packages/@contentlayer/source-files/src/schema/defs/index.ts -------------------------------------------------------------------------------- /packages/@contentlayer/source-files/src/schema/provideSchema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/packages/@contentlayer/source-files/src/schema/provideSchema.ts -------------------------------------------------------------------------------- /packages/@contentlayer/source-files/src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/packages/@contentlayer/source-files/src/types.ts -------------------------------------------------------------------------------- /packages/@contentlayer/source-files/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/packages/@contentlayer/source-files/tsconfig.json -------------------------------------------------------------------------------- /packages/@contentlayer/source-files/vitest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/packages/@contentlayer/source-files/vitest.config.ts -------------------------------------------------------------------------------- /packages/@contentlayer/source-remote-files/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/packages/@contentlayer/source-remote-files/package.json -------------------------------------------------------------------------------- /packages/@contentlayer/source-remote-files/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/packages/@contentlayer/source-remote-files/src/index.ts -------------------------------------------------------------------------------- /packages/@contentlayer/source-remote-files/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/packages/@contentlayer/source-remote-files/tsconfig.json -------------------------------------------------------------------------------- /packages/@contentlayer/utils/node.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./dist/cjs/node') 2 | -------------------------------------------------------------------------------- /packages/@contentlayer/utils/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/packages/@contentlayer/utils/package.json -------------------------------------------------------------------------------- /packages/@contentlayer/utils/src/base64.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/packages/@contentlayer/utils/src/base64.ts -------------------------------------------------------------------------------- /packages/@contentlayer/utils/src/effect/Array.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/packages/@contentlayer/utils/src/effect/Array.ts -------------------------------------------------------------------------------- /packages/@contentlayer/utils/src/effect/Chunk.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/packages/@contentlayer/utils/src/effect/Chunk.ts -------------------------------------------------------------------------------- /packages/@contentlayer/utils/src/effect/ConsoleService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/packages/@contentlayer/utils/src/effect/ConsoleService.ts -------------------------------------------------------------------------------- /packages/@contentlayer/utils/src/effect/Effect.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/packages/@contentlayer/utils/src/effect/Effect.ts -------------------------------------------------------------------------------- /packages/@contentlayer/utils/src/effect/OT.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/packages/@contentlayer/utils/src/effect/OT.ts -------------------------------------------------------------------------------- /packages/@contentlayer/utils/src/effect/Option.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/packages/@contentlayer/utils/src/effect/Option.ts -------------------------------------------------------------------------------- /packages/@contentlayer/utils/src/effect/Stream.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/packages/@contentlayer/utils/src/effect/Stream.ts -------------------------------------------------------------------------------- /packages/@contentlayer/utils/src/effect/These.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/packages/@contentlayer/utils/src/effect/These.ts -------------------------------------------------------------------------------- /packages/@contentlayer/utils/src/effect/Tracing/Enable.ts: -------------------------------------------------------------------------------- 1 | import '@effect-ts/core/Tracing/Enable' 2 | -------------------------------------------------------------------------------- /packages/@contentlayer/utils/src/effect/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/packages/@contentlayer/utils/src/effect/index.ts -------------------------------------------------------------------------------- /packages/@contentlayer/utils/src/file-paths.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/packages/@contentlayer/utils/src/file-paths.ts -------------------------------------------------------------------------------- /packages/@contentlayer/utils/src/fs-in-memory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/packages/@contentlayer/utils/src/fs-in-memory.ts -------------------------------------------------------------------------------- /packages/@contentlayer/utils/src/fs.ts: -------------------------------------------------------------------------------- 1 | export * as fs from './fs_.js' 2 | -------------------------------------------------------------------------------- /packages/@contentlayer/utils/src/fs_.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/packages/@contentlayer/utils/src/fs_.ts -------------------------------------------------------------------------------- /packages/@contentlayer/utils/src/guards.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/packages/@contentlayer/utils/src/guards.ts -------------------------------------------------------------------------------- /packages/@contentlayer/utils/src/hash.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/packages/@contentlayer/utils/src/hash.ts -------------------------------------------------------------------------------- /packages/@contentlayer/utils/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/packages/@contentlayer/utils/src/index.ts -------------------------------------------------------------------------------- /packages/@contentlayer/utils/src/node/fs-watcher.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/packages/@contentlayer/utils/src/node/fs-watcher.ts -------------------------------------------------------------------------------- /packages/@contentlayer/utils/src/node/fs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/packages/@contentlayer/utils/src/node/fs.ts -------------------------------------------------------------------------------- /packages/@contentlayer/utils/src/node/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/packages/@contentlayer/utils/src/node/index.ts -------------------------------------------------------------------------------- /packages/@contentlayer/utils/src/node/version.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/packages/@contentlayer/utils/src/node/version.ts -------------------------------------------------------------------------------- /packages/@contentlayer/utils/src/object/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/packages/@contentlayer/utils/src/object/index.ts -------------------------------------------------------------------------------- /packages/@contentlayer/utils/src/object/omit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/packages/@contentlayer/utils/src/object/omit.ts -------------------------------------------------------------------------------- /packages/@contentlayer/utils/src/object/pick.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/packages/@contentlayer/utils/src/object/pick.ts -------------------------------------------------------------------------------- /packages/@contentlayer/utils/src/promise.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/packages/@contentlayer/utils/src/promise.ts -------------------------------------------------------------------------------- /packages/@contentlayer/utils/src/single-item.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/packages/@contentlayer/utils/src/single-item.ts -------------------------------------------------------------------------------- /packages/@contentlayer/utils/src/string.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/packages/@contentlayer/utils/src/string.ts -------------------------------------------------------------------------------- /packages/@contentlayer/utils/src/tracing-effect/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/packages/@contentlayer/utils/src/tracing-effect/index.ts -------------------------------------------------------------------------------- /packages/@contentlayer/utils/src/tracing-effect/otel-exporter-trace-otlp-grpc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/packages/@contentlayer/utils/src/tracing-effect/otel-exporter-trace-otlp-grpc.ts -------------------------------------------------------------------------------- /packages/@contentlayer/utils/src/tracing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/packages/@contentlayer/utils/src/tracing.ts -------------------------------------------------------------------------------- /packages/@contentlayer/utils/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/packages/@contentlayer/utils/tsconfig.json -------------------------------------------------------------------------------- /packages/archive/source-sanity/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/packages/archive/source-sanity/package.json -------------------------------------------------------------------------------- /packages/archive/source-sanity/src/fetchData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/packages/archive/source-sanity/src/fetchData.ts -------------------------------------------------------------------------------- /packages/archive/source-sanity/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/packages/archive/source-sanity/src/index.ts -------------------------------------------------------------------------------- /packages/archive/source-sanity/src/provideSchema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/packages/archive/source-sanity/src/provideSchema.ts -------------------------------------------------------------------------------- /packages/archive/source-sanity/src/sanity-client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/packages/archive/source-sanity/src/sanity-client.ts -------------------------------------------------------------------------------- /packages/archive/source-sanity/src/sanity-types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/packages/archive/source-sanity/src/sanity-types.ts -------------------------------------------------------------------------------- /packages/archive/source-sanity/src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/packages/archive/source-sanity/src/types.ts -------------------------------------------------------------------------------- /packages/archive/source-sanity/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/packages/archive/source-sanity/tsconfig.json -------------------------------------------------------------------------------- /packages/contentful-generator/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/packages/contentful-generator/package.json -------------------------------------------------------------------------------- /packages/contentful-generator/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/packages/contentful-generator/src/index.ts -------------------------------------------------------------------------------- /packages/contentful-generator/src/migration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/packages/contentful-generator/src/migration.ts -------------------------------------------------------------------------------- /packages/contentful-generator/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/packages/contentful-generator/tsconfig.json -------------------------------------------------------------------------------- /packages/contentlayer-stackbit-yaml-generator/bin/cli.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/packages/contentlayer-stackbit-yaml-generator/bin/cli.cjs -------------------------------------------------------------------------------- /packages/contentlayer-stackbit-yaml-generator/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/packages/contentlayer-stackbit-yaml-generator/package.json -------------------------------------------------------------------------------- /packages/contentlayer-stackbit-yaml-generator/src/__test__/convert.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/packages/contentlayer-stackbit-yaml-generator/src/__test__/convert.spec.ts -------------------------------------------------------------------------------- /packages/contentlayer-stackbit-yaml-generator/src/__test__/fixtures/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/packages/contentlayer-stackbit-yaml-generator/src/__test__/fixtures/index.ts -------------------------------------------------------------------------------- /packages/contentlayer-stackbit-yaml-generator/src/cli/DefaultCommand.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/packages/contentlayer-stackbit-yaml-generator/src/cli/DefaultCommand.ts -------------------------------------------------------------------------------- /packages/contentlayer-stackbit-yaml-generator/src/cli/convert.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/packages/contentlayer-stackbit-yaml-generator/src/cli/convert.ts -------------------------------------------------------------------------------- /packages/contentlayer-stackbit-yaml-generator/src/cli/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/packages/contentlayer-stackbit-yaml-generator/src/cli/index.ts -------------------------------------------------------------------------------- /packages/contentlayer-stackbit-yaml-generator/src/cli/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/packages/contentlayer-stackbit-yaml-generator/src/cli/utils.ts -------------------------------------------------------------------------------- /packages/contentlayer-stackbit-yaml-generator/src/lib/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/packages/contentlayer-stackbit-yaml-generator/src/lib/index.ts -------------------------------------------------------------------------------- /packages/contentlayer-stackbit-yaml-generator/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/packages/contentlayer-stackbit-yaml-generator/tsconfig.json -------------------------------------------------------------------------------- /packages/contentlayer-stackbit-yaml-generator/vitest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/packages/contentlayer-stackbit-yaml-generator/vitest.config.ts -------------------------------------------------------------------------------- /packages/contentlayer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/packages/contentlayer/README.md -------------------------------------------------------------------------------- /packages/contentlayer/bin/cli.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/packages/contentlayer/bin/cli.cjs -------------------------------------------------------------------------------- /packages/contentlayer/index.d.ts: -------------------------------------------------------------------------------- 1 | // needed for Next.js to work 2 | -------------------------------------------------------------------------------- /packages/contentlayer/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/packages/contentlayer/package.json -------------------------------------------------------------------------------- /packages/contentlayer/src/client/index.ts: -------------------------------------------------------------------------------- 1 | export * from '@contentlayer2/client' 2 | -------------------------------------------------------------------------------- /packages/contentlayer/src/core/index.ts: -------------------------------------------------------------------------------- 1 | export * from '@contentlayer2/core' 2 | -------------------------------------------------------------------------------- /packages/contentlayer/src/source-files/index.ts: -------------------------------------------------------------------------------- 1 | export * from '@contentlayer2/source-files' 2 | -------------------------------------------------------------------------------- /packages/contentlayer/src/source-files/schema/index.ts: -------------------------------------------------------------------------------- 1 | export * from '@contentlayer2/source-files/schema/defs' 2 | -------------------------------------------------------------------------------- /packages/contentlayer/src/source-remote-files/index.ts: -------------------------------------------------------------------------------- 1 | export * from '@contentlayer2/source-remote-files' 2 | -------------------------------------------------------------------------------- /packages/contentlayer/src/utils/index.ts: -------------------------------------------------------------------------------- 1 | export * from '@contentlayer2/utils' 2 | -------------------------------------------------------------------------------- /packages/contentlayer/src/utils/node/index.ts: -------------------------------------------------------------------------------- 1 | export * from '@contentlayer2/utils/node' 2 | -------------------------------------------------------------------------------- /packages/contentlayer/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/packages/contentlayer/tsconfig.json -------------------------------------------------------------------------------- /packages/integration-tests/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/packages/integration-tests/package.json -------------------------------------------------------------------------------- /packages/integration-tests/src/empty-content-folder/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/packages/integration-tests/src/empty-content-folder/index.test.ts -------------------------------------------------------------------------------- /packages/integration-tests/src/empty-content-folder/posts/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/integration-tests/src/image-field/content/posts/image-a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/packages/integration-tests/src/image-field/content/posts/image-a.png -------------------------------------------------------------------------------- /packages/integration-tests/src/image-field/content/posts/post-a.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/packages/integration-tests/src/image-field/content/posts/post-a.md -------------------------------------------------------------------------------- /packages/integration-tests/src/image-field/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/packages/integration-tests/src/image-field/index.test.ts -------------------------------------------------------------------------------- /packages/integration-tests/src/markdown/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/packages/integration-tests/src/markdown/index.test.ts -------------------------------------------------------------------------------- /packages/integration-tests/src/markdown/posts/post-1.md: -------------------------------------------------------------------------------- 1 | # Hello world 2 | -------------------------------------------------------------------------------- /packages/integration-tests/src/mdx-remark-images/content/posts/image-a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/packages/integration-tests/src/mdx-remark-images/content/posts/image-a.png -------------------------------------------------------------------------------- /packages/integration-tests/src/mdx-remark-images/content/posts/post-a.mdx: -------------------------------------------------------------------------------- 1 | # Hello world 2 | 3 | ![test](./image-a.png) 4 | -------------------------------------------------------------------------------- /packages/integration-tests/src/mdx-remark-images/contentDirPath/posts/image-b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/packages/integration-tests/src/mdx-remark-images/contentDirPath/posts/image-b.png -------------------------------------------------------------------------------- /packages/integration-tests/src/mdx-remark-images/contentDirPath/posts/post-b.mdx: -------------------------------------------------------------------------------- 1 | # Hello world 2 | 3 | ![test](./posts/image-b.png) 4 | -------------------------------------------------------------------------------- /packages/integration-tests/src/mdx-remark-images/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/packages/integration-tests/src/mdx-remark-images/index.test.ts -------------------------------------------------------------------------------- /packages/integration-tests/src/remark-gfm/content/posts/post-1.mdx: -------------------------------------------------------------------------------- 1 | # Hello world 2 | 3 | Example `code` 4 | -------------------------------------------------------------------------------- /packages/integration-tests/src/remark-gfm/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/packages/integration-tests/src/remark-gfm/index.test.ts -------------------------------------------------------------------------------- /packages/integration-tests/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/packages/integration-tests/tsconfig.json -------------------------------------------------------------------------------- /packages/integration-tests/vitest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/packages/integration-tests/vitest.config.ts -------------------------------------------------------------------------------- /packages/next-contentlayer/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/packages/next-contentlayer/package.json -------------------------------------------------------------------------------- /packages/next-contentlayer/src/ambient.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/packages/next-contentlayer/src/ambient.d.ts -------------------------------------------------------------------------------- /packages/next-contentlayer/src/check-constraints.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/packages/next-contentlayer/src/check-constraints.ts -------------------------------------------------------------------------------- /packages/next-contentlayer/src/hooks/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/packages/next-contentlayer/src/hooks/index.ts -------------------------------------------------------------------------------- /packages/next-contentlayer/src/hooks/useLiveReload.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/packages/next-contentlayer/src/hooks/useLiveReload.ts -------------------------------------------------------------------------------- /packages/next-contentlayer/src/hooks/useMDXComponent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/packages/next-contentlayer/src/hooks/useMDXComponent.ts -------------------------------------------------------------------------------- /packages/next-contentlayer/src/index-cjs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/packages/next-contentlayer/src/index-cjs.ts -------------------------------------------------------------------------------- /packages/next-contentlayer/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/packages/next-contentlayer/src/index.ts -------------------------------------------------------------------------------- /packages/next-contentlayer/src/plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/packages/next-contentlayer/src/plugin.ts -------------------------------------------------------------------------------- /packages/next-contentlayer/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/packages/next-contentlayer/tsconfig.json -------------------------------------------------------------------------------- /prettier.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/prettier.config.js -------------------------------------------------------------------------------- /tsconfig.all.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/tsconfig.all.json -------------------------------------------------------------------------------- /tsconfig.base.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/tsconfig.base.json -------------------------------------------------------------------------------- /vercel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/vercel.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/contentlayer2/HEAD/yarn.lock --------------------------------------------------------------------------------