├── .gitignore ├── README.md ├── package.json ├── sanity ├── README.md ├── config │ ├── .checksums │ └── @sanity │ │ ├── data-aspects.json │ │ ├── default-layout.json │ │ ├── default-login.json │ │ └── form-builder.json ├── package.json ├── plugins │ └── .gitkeep ├── sanity.json ├── schemas │ ├── page.js │ └── schema.js ├── static │ ├── .gitkeep │ └── favicon.ico ├── tsconfig.json └── yarn.lock └── src ├── components └── callout.js ├── pages ├── [page].js └── index.js └── utils └── sanity.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlengstorf/sanity-next-mdx/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlengstorf/sanity-next-mdx/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlengstorf/sanity-next-mdx/HEAD/package.json -------------------------------------------------------------------------------- /sanity/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlengstorf/sanity-next-mdx/HEAD/sanity/README.md -------------------------------------------------------------------------------- /sanity/config/.checksums: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlengstorf/sanity-next-mdx/HEAD/sanity/config/.checksums -------------------------------------------------------------------------------- /sanity/config/@sanity/data-aspects.json: -------------------------------------------------------------------------------- 1 | { 2 | "listOptions": {} 3 | } 4 | -------------------------------------------------------------------------------- /sanity/config/@sanity/default-layout.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlengstorf/sanity-next-mdx/HEAD/sanity/config/@sanity/default-layout.json -------------------------------------------------------------------------------- /sanity/config/@sanity/default-login.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlengstorf/sanity-next-mdx/HEAD/sanity/config/@sanity/default-login.json -------------------------------------------------------------------------------- /sanity/config/@sanity/form-builder.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlengstorf/sanity-next-mdx/HEAD/sanity/config/@sanity/form-builder.json -------------------------------------------------------------------------------- /sanity/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlengstorf/sanity-next-mdx/HEAD/sanity/package.json -------------------------------------------------------------------------------- /sanity/plugins/.gitkeep: -------------------------------------------------------------------------------- 1 | User-specific packages can be placed here 2 | -------------------------------------------------------------------------------- /sanity/sanity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlengstorf/sanity-next-mdx/HEAD/sanity/sanity.json -------------------------------------------------------------------------------- /sanity/schemas/page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlengstorf/sanity-next-mdx/HEAD/sanity/schemas/page.js -------------------------------------------------------------------------------- /sanity/schemas/schema.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlengstorf/sanity-next-mdx/HEAD/sanity/schemas/schema.js -------------------------------------------------------------------------------- /sanity/static/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlengstorf/sanity-next-mdx/HEAD/sanity/static/.gitkeep -------------------------------------------------------------------------------- /sanity/static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlengstorf/sanity-next-mdx/HEAD/sanity/static/favicon.ico -------------------------------------------------------------------------------- /sanity/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlengstorf/sanity-next-mdx/HEAD/sanity/tsconfig.json -------------------------------------------------------------------------------- /sanity/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlengstorf/sanity-next-mdx/HEAD/sanity/yarn.lock -------------------------------------------------------------------------------- /src/components/callout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlengstorf/sanity-next-mdx/HEAD/src/components/callout.js -------------------------------------------------------------------------------- /src/pages/[page].js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlengstorf/sanity-next-mdx/HEAD/src/pages/[page].js -------------------------------------------------------------------------------- /src/pages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlengstorf/sanity-next-mdx/HEAD/src/pages/index.js -------------------------------------------------------------------------------- /src/utils/sanity.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlengstorf/sanity-next-mdx/HEAD/src/utils/sanity.js --------------------------------------------------------------------------------