├── .gitignore ├── README.md ├── config ├── .checksums └── @sanity │ ├── data-aspects.json │ ├── default-layout.json │ └── default-login.json ├── package.json ├── plugins └── .gitkeep ├── sanity.json ├── schemas ├── author.js ├── project.js └── schema.js ├── static ├── .gitkeep └── favicon.ico └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlengstorf/sanity-portfolio-studio/HEAD/README.md -------------------------------------------------------------------------------- /config/.checksums: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlengstorf/sanity-portfolio-studio/HEAD/config/.checksums -------------------------------------------------------------------------------- /config/@sanity/data-aspects.json: -------------------------------------------------------------------------------- 1 | { 2 | "listOptions": {} 3 | } 4 | -------------------------------------------------------------------------------- /config/@sanity/default-layout.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlengstorf/sanity-portfolio-studio/HEAD/config/@sanity/default-layout.json -------------------------------------------------------------------------------- /config/@sanity/default-login.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlengstorf/sanity-portfolio-studio/HEAD/config/@sanity/default-login.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlengstorf/sanity-portfolio-studio/HEAD/package.json -------------------------------------------------------------------------------- /plugins/.gitkeep: -------------------------------------------------------------------------------- 1 | User-specific packages can be placed here 2 | -------------------------------------------------------------------------------- /sanity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlengstorf/sanity-portfolio-studio/HEAD/sanity.json -------------------------------------------------------------------------------- /schemas/author.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlengstorf/sanity-portfolio-studio/HEAD/schemas/author.js -------------------------------------------------------------------------------- /schemas/project.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlengstorf/sanity-portfolio-studio/HEAD/schemas/project.js -------------------------------------------------------------------------------- /schemas/schema.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlengstorf/sanity-portfolio-studio/HEAD/schemas/schema.js -------------------------------------------------------------------------------- /static/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlengstorf/sanity-portfolio-studio/HEAD/static/.gitkeep -------------------------------------------------------------------------------- /static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlengstorf/sanity-portfolio-studio/HEAD/static/favicon.ico -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlengstorf/sanity-portfolio-studio/HEAD/yarn.lock --------------------------------------------------------------------------------