├── .editorconfig ├── .gitignore ├── .npmrc ├── .travis.yml ├── README.md ├── assets ├── frontend.jpg └── studio.jpg ├── data └── production.tar.gz ├── dev ├── template-values-development.json └── template-values-production.json ├── package.json ├── renovate.json ├── sanity-template.json └── template ├── .editorconfig ├── .gitignore ├── README.md ├── lerna.json ├── package-lock.json ├── package.json ├── studio ├── .eslintignore ├── .eslintrc.js ├── .gitignore ├── .prettierrc ├── README.md ├── config │ ├── .checksums │ └── @sanity │ │ ├── data-aspects.json │ │ ├── default-layout.json │ │ ├── default-login.json │ │ └── form-builder.json ├── dashboardConfig.js ├── deskStructure.js ├── netlify.toml ├── package-lock.json ├── package.json ├── plugins │ └── dashboard-widget-structure-menu │ │ ├── sanity.json │ │ └── src │ │ ├── components │ │ ├── StructureMenuWidget.css │ │ ├── StructureMenuWidget.js │ │ └── index.js │ │ ├── lib │ │ └── structure.js │ │ ├── props.js │ │ └── widget.js ├── sanity.json ├── schemas │ ├── documents │ │ ├── category.js │ │ ├── person.js │ │ ├── sampleProject.js │ │ └── siteSettings.js │ ├── objects │ │ ├── bioPortableText.js │ │ ├── figure.js │ │ ├── projectMember.js │ │ ├── projectPortableText.js │ │ └── simplePortableText.js │ └── schema.js ├── static │ └── favicon.ico └── studioHintsConfig.js └── web ├── .env.development.template ├── .env.production ├── .eslintignore ├── .eslintrc.js ├── .gitignore ├── .prettierrc ├── README.md ├── client-config.js ├── gatsby-browser.js ├── gatsby-config.js ├── gatsby-node.js ├── gatsby-ssr.js ├── package-lock.json ├── package.json ├── postcss.config.js └── src ├── components ├── block-content.js ├── container.js ├── container.module.css ├── figure.js ├── figure.module.css ├── graphql-error-list.js ├── header.js ├── header.module.css ├── icon │ ├── hamburger.js │ └── index.js ├── layout.js ├── layout.module.css ├── project-preview-grid.js ├── project-preview-grid.module.css ├── project-preview.js ├── project-preview.module.css ├── project.js ├── project.module.css ├── role-list.js ├── role-list.module.css ├── seo.js └── typography.module.css ├── containers └── layout.js ├── lib ├── helpers.js ├── image-url.js └── string-utils.js ├── pages ├── 404.js ├── archive.js └── index.js ├── styles ├── custom-media.css ├── custom-properties.css └── layout.css └── templates └── project.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanity-io/sanity-template-gatsby-portfolio/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | /build 3 | /node_modules 4 | -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | legacy-peer-deps=true 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanity-io/sanity-template-gatsby-portfolio/HEAD/.travis.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanity-io/sanity-template-gatsby-portfolio/HEAD/README.md -------------------------------------------------------------------------------- /assets/frontend.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanity-io/sanity-template-gatsby-portfolio/HEAD/assets/frontend.jpg -------------------------------------------------------------------------------- /assets/studio.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanity-io/sanity-template-gatsby-portfolio/HEAD/assets/studio.jpg -------------------------------------------------------------------------------- /data/production.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanity-io/sanity-template-gatsby-portfolio/HEAD/data/production.tar.gz -------------------------------------------------------------------------------- /dev/template-values-development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanity-io/sanity-template-gatsby-portfolio/HEAD/dev/template-values-development.json -------------------------------------------------------------------------------- /dev/template-values-production.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanity-io/sanity-template-gatsby-portfolio/HEAD/dev/template-values-production.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanity-io/sanity-template-gatsby-portfolio/HEAD/package.json -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanity-io/sanity-template-gatsby-portfolio/HEAD/renovate.json -------------------------------------------------------------------------------- /sanity-template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanity-io/sanity-template-gatsby-portfolio/HEAD/sanity-template.json -------------------------------------------------------------------------------- /template/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanity-io/sanity-template-gatsby-portfolio/HEAD/template/.editorconfig -------------------------------------------------------------------------------- /template/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanity-io/sanity-template-gatsby-portfolio/HEAD/template/.gitignore -------------------------------------------------------------------------------- /template/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanity-io/sanity-template-gatsby-portfolio/HEAD/template/README.md -------------------------------------------------------------------------------- /template/lerna.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanity-io/sanity-template-gatsby-portfolio/HEAD/template/lerna.json -------------------------------------------------------------------------------- /template/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanity-io/sanity-template-gatsby-portfolio/HEAD/template/package-lock.json -------------------------------------------------------------------------------- /template/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanity-io/sanity-template-gatsby-portfolio/HEAD/template/package.json -------------------------------------------------------------------------------- /template/studio/.eslintignore: -------------------------------------------------------------------------------- 1 | dist/* 2 | -------------------------------------------------------------------------------- /template/studio/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanity-io/sanity-template-gatsby-portfolio/HEAD/template/studio/.eslintrc.js -------------------------------------------------------------------------------- /template/studio/.gitignore: -------------------------------------------------------------------------------- 1 | /dist 2 | /node_modules 3 | -------------------------------------------------------------------------------- /template/studio/.prettierrc: -------------------------------------------------------------------------------- 1 | { 2 | "printWidth": 100 3 | } 4 | -------------------------------------------------------------------------------- /template/studio/README.md: -------------------------------------------------------------------------------- 1 | # <#< repository.name >#>-studio 2 | -------------------------------------------------------------------------------- /template/studio/config/.checksums: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanity-io/sanity-template-gatsby-portfolio/HEAD/template/studio/config/.checksums -------------------------------------------------------------------------------- /template/studio/config/@sanity/data-aspects.json: -------------------------------------------------------------------------------- 1 | { 2 | "listOptions": {} 3 | } 4 | -------------------------------------------------------------------------------- /template/studio/config/@sanity/default-layout.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanity-io/sanity-template-gatsby-portfolio/HEAD/template/studio/config/@sanity/default-layout.json -------------------------------------------------------------------------------- /template/studio/config/@sanity/default-login.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanity-io/sanity-template-gatsby-portfolio/HEAD/template/studio/config/@sanity/default-login.json -------------------------------------------------------------------------------- /template/studio/config/@sanity/form-builder.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanity-io/sanity-template-gatsby-portfolio/HEAD/template/studio/config/@sanity/form-builder.json -------------------------------------------------------------------------------- /template/studio/dashboardConfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanity-io/sanity-template-gatsby-portfolio/HEAD/template/studio/dashboardConfig.js -------------------------------------------------------------------------------- /template/studio/deskStructure.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanity-io/sanity-template-gatsby-portfolio/HEAD/template/studio/deskStructure.js -------------------------------------------------------------------------------- /template/studio/netlify.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanity-io/sanity-template-gatsby-portfolio/HEAD/template/studio/netlify.toml -------------------------------------------------------------------------------- /template/studio/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanity-io/sanity-template-gatsby-portfolio/HEAD/template/studio/package-lock.json -------------------------------------------------------------------------------- /template/studio/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanity-io/sanity-template-gatsby-portfolio/HEAD/template/studio/package.json -------------------------------------------------------------------------------- /template/studio/plugins/dashboard-widget-structure-menu/sanity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanity-io/sanity-template-gatsby-portfolio/HEAD/template/studio/plugins/dashboard-widget-structure-menu/sanity.json -------------------------------------------------------------------------------- /template/studio/plugins/dashboard-widget-structure-menu/src/components/StructureMenuWidget.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanity-io/sanity-template-gatsby-portfolio/HEAD/template/studio/plugins/dashboard-widget-structure-menu/src/components/StructureMenuWidget.css -------------------------------------------------------------------------------- /template/studio/plugins/dashboard-widget-structure-menu/src/components/StructureMenuWidget.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanity-io/sanity-template-gatsby-portfolio/HEAD/template/studio/plugins/dashboard-widget-structure-menu/src/components/StructureMenuWidget.js -------------------------------------------------------------------------------- /template/studio/plugins/dashboard-widget-structure-menu/src/components/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanity-io/sanity-template-gatsby-portfolio/HEAD/template/studio/plugins/dashboard-widget-structure-menu/src/components/index.js -------------------------------------------------------------------------------- /template/studio/plugins/dashboard-widget-structure-menu/src/lib/structure.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanity-io/sanity-template-gatsby-portfolio/HEAD/template/studio/plugins/dashboard-widget-structure-menu/src/lib/structure.js -------------------------------------------------------------------------------- /template/studio/plugins/dashboard-widget-structure-menu/src/props.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanity-io/sanity-template-gatsby-portfolio/HEAD/template/studio/plugins/dashboard-widget-structure-menu/src/props.js -------------------------------------------------------------------------------- /template/studio/plugins/dashboard-widget-structure-menu/src/widget.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanity-io/sanity-template-gatsby-portfolio/HEAD/template/studio/plugins/dashboard-widget-structure-menu/src/widget.js -------------------------------------------------------------------------------- /template/studio/sanity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanity-io/sanity-template-gatsby-portfolio/HEAD/template/studio/sanity.json -------------------------------------------------------------------------------- /template/studio/schemas/documents/category.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanity-io/sanity-template-gatsby-portfolio/HEAD/template/studio/schemas/documents/category.js -------------------------------------------------------------------------------- /template/studio/schemas/documents/person.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanity-io/sanity-template-gatsby-portfolio/HEAD/template/studio/schemas/documents/person.js -------------------------------------------------------------------------------- /template/studio/schemas/documents/sampleProject.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanity-io/sanity-template-gatsby-portfolio/HEAD/template/studio/schemas/documents/sampleProject.js -------------------------------------------------------------------------------- /template/studio/schemas/documents/siteSettings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanity-io/sanity-template-gatsby-portfolio/HEAD/template/studio/schemas/documents/siteSettings.js -------------------------------------------------------------------------------- /template/studio/schemas/objects/bioPortableText.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanity-io/sanity-template-gatsby-portfolio/HEAD/template/studio/schemas/objects/bioPortableText.js -------------------------------------------------------------------------------- /template/studio/schemas/objects/figure.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanity-io/sanity-template-gatsby-portfolio/HEAD/template/studio/schemas/objects/figure.js -------------------------------------------------------------------------------- /template/studio/schemas/objects/projectMember.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanity-io/sanity-template-gatsby-portfolio/HEAD/template/studio/schemas/objects/projectMember.js -------------------------------------------------------------------------------- /template/studio/schemas/objects/projectPortableText.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanity-io/sanity-template-gatsby-portfolio/HEAD/template/studio/schemas/objects/projectPortableText.js -------------------------------------------------------------------------------- /template/studio/schemas/objects/simplePortableText.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanity-io/sanity-template-gatsby-portfolio/HEAD/template/studio/schemas/objects/simplePortableText.js -------------------------------------------------------------------------------- /template/studio/schemas/schema.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanity-io/sanity-template-gatsby-portfolio/HEAD/template/studio/schemas/schema.js -------------------------------------------------------------------------------- /template/studio/static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanity-io/sanity-template-gatsby-portfolio/HEAD/template/studio/static/favicon.ico -------------------------------------------------------------------------------- /template/studio/studioHintsConfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanity-io/sanity-template-gatsby-portfolio/HEAD/template/studio/studioHintsConfig.js -------------------------------------------------------------------------------- /template/web/.env.development.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanity-io/sanity-template-gatsby-portfolio/HEAD/template/web/.env.development.template -------------------------------------------------------------------------------- /template/web/.env.production: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanity-io/sanity-template-gatsby-portfolio/HEAD/template/web/.env.production -------------------------------------------------------------------------------- /template/web/.eslintignore: -------------------------------------------------------------------------------- 1 | /public 2 | -------------------------------------------------------------------------------- /template/web/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanity-io/sanity-template-gatsby-portfolio/HEAD/template/web/.eslintrc.js -------------------------------------------------------------------------------- /template/web/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanity-io/sanity-template-gatsby-portfolio/HEAD/template/web/.gitignore -------------------------------------------------------------------------------- /template/web/.prettierrc: -------------------------------------------------------------------------------- 1 | { 2 | "printWidth": 100 3 | } 4 | -------------------------------------------------------------------------------- /template/web/README.md: -------------------------------------------------------------------------------- 1 | # <#< repository.name >#>-web 2 | -------------------------------------------------------------------------------- /template/web/client-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanity-io/sanity-template-gatsby-portfolio/HEAD/template/web/client-config.js -------------------------------------------------------------------------------- /template/web/gatsby-browser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanity-io/sanity-template-gatsby-portfolio/HEAD/template/web/gatsby-browser.js -------------------------------------------------------------------------------- /template/web/gatsby-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanity-io/sanity-template-gatsby-portfolio/HEAD/template/web/gatsby-config.js -------------------------------------------------------------------------------- /template/web/gatsby-node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanity-io/sanity-template-gatsby-portfolio/HEAD/template/web/gatsby-node.js -------------------------------------------------------------------------------- /template/web/gatsby-ssr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanity-io/sanity-template-gatsby-portfolio/HEAD/template/web/gatsby-ssr.js -------------------------------------------------------------------------------- /template/web/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanity-io/sanity-template-gatsby-portfolio/HEAD/template/web/package-lock.json -------------------------------------------------------------------------------- /template/web/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanity-io/sanity-template-gatsby-portfolio/HEAD/template/web/package.json -------------------------------------------------------------------------------- /template/web/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanity-io/sanity-template-gatsby-portfolio/HEAD/template/web/postcss.config.js -------------------------------------------------------------------------------- /template/web/src/components/block-content.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanity-io/sanity-template-gatsby-portfolio/HEAD/template/web/src/components/block-content.js -------------------------------------------------------------------------------- /template/web/src/components/container.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanity-io/sanity-template-gatsby-portfolio/HEAD/template/web/src/components/container.js -------------------------------------------------------------------------------- /template/web/src/components/container.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanity-io/sanity-template-gatsby-portfolio/HEAD/template/web/src/components/container.module.css -------------------------------------------------------------------------------- /template/web/src/components/figure.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanity-io/sanity-template-gatsby-portfolio/HEAD/template/web/src/components/figure.js -------------------------------------------------------------------------------- /template/web/src/components/figure.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanity-io/sanity-template-gatsby-portfolio/HEAD/template/web/src/components/figure.module.css -------------------------------------------------------------------------------- /template/web/src/components/graphql-error-list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanity-io/sanity-template-gatsby-portfolio/HEAD/template/web/src/components/graphql-error-list.js -------------------------------------------------------------------------------- /template/web/src/components/header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanity-io/sanity-template-gatsby-portfolio/HEAD/template/web/src/components/header.js -------------------------------------------------------------------------------- /template/web/src/components/header.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanity-io/sanity-template-gatsby-portfolio/HEAD/template/web/src/components/header.module.css -------------------------------------------------------------------------------- /template/web/src/components/icon/hamburger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanity-io/sanity-template-gatsby-portfolio/HEAD/template/web/src/components/icon/hamburger.js -------------------------------------------------------------------------------- /template/web/src/components/icon/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanity-io/sanity-template-gatsby-portfolio/HEAD/template/web/src/components/icon/index.js -------------------------------------------------------------------------------- /template/web/src/components/layout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanity-io/sanity-template-gatsby-portfolio/HEAD/template/web/src/components/layout.js -------------------------------------------------------------------------------- /template/web/src/components/layout.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanity-io/sanity-template-gatsby-portfolio/HEAD/template/web/src/components/layout.module.css -------------------------------------------------------------------------------- /template/web/src/components/project-preview-grid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanity-io/sanity-template-gatsby-portfolio/HEAD/template/web/src/components/project-preview-grid.js -------------------------------------------------------------------------------- /template/web/src/components/project-preview-grid.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanity-io/sanity-template-gatsby-portfolio/HEAD/template/web/src/components/project-preview-grid.module.css -------------------------------------------------------------------------------- /template/web/src/components/project-preview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanity-io/sanity-template-gatsby-portfolio/HEAD/template/web/src/components/project-preview.js -------------------------------------------------------------------------------- /template/web/src/components/project-preview.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanity-io/sanity-template-gatsby-portfolio/HEAD/template/web/src/components/project-preview.module.css -------------------------------------------------------------------------------- /template/web/src/components/project.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanity-io/sanity-template-gatsby-portfolio/HEAD/template/web/src/components/project.js -------------------------------------------------------------------------------- /template/web/src/components/project.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanity-io/sanity-template-gatsby-portfolio/HEAD/template/web/src/components/project.module.css -------------------------------------------------------------------------------- /template/web/src/components/role-list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanity-io/sanity-template-gatsby-portfolio/HEAD/template/web/src/components/role-list.js -------------------------------------------------------------------------------- /template/web/src/components/role-list.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanity-io/sanity-template-gatsby-portfolio/HEAD/template/web/src/components/role-list.module.css -------------------------------------------------------------------------------- /template/web/src/components/seo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanity-io/sanity-template-gatsby-portfolio/HEAD/template/web/src/components/seo.js -------------------------------------------------------------------------------- /template/web/src/components/typography.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanity-io/sanity-template-gatsby-portfolio/HEAD/template/web/src/components/typography.module.css -------------------------------------------------------------------------------- /template/web/src/containers/layout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanity-io/sanity-template-gatsby-portfolio/HEAD/template/web/src/containers/layout.js -------------------------------------------------------------------------------- /template/web/src/lib/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanity-io/sanity-template-gatsby-portfolio/HEAD/template/web/src/lib/helpers.js -------------------------------------------------------------------------------- /template/web/src/lib/image-url.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanity-io/sanity-template-gatsby-portfolio/HEAD/template/web/src/lib/image-url.js -------------------------------------------------------------------------------- /template/web/src/lib/string-utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanity-io/sanity-template-gatsby-portfolio/HEAD/template/web/src/lib/string-utils.js -------------------------------------------------------------------------------- /template/web/src/pages/404.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanity-io/sanity-template-gatsby-portfolio/HEAD/template/web/src/pages/404.js -------------------------------------------------------------------------------- /template/web/src/pages/archive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanity-io/sanity-template-gatsby-portfolio/HEAD/template/web/src/pages/archive.js -------------------------------------------------------------------------------- /template/web/src/pages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanity-io/sanity-template-gatsby-portfolio/HEAD/template/web/src/pages/index.js -------------------------------------------------------------------------------- /template/web/src/styles/custom-media.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanity-io/sanity-template-gatsby-portfolio/HEAD/template/web/src/styles/custom-media.css -------------------------------------------------------------------------------- /template/web/src/styles/custom-properties.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanity-io/sanity-template-gatsby-portfolio/HEAD/template/web/src/styles/custom-properties.css -------------------------------------------------------------------------------- /template/web/src/styles/layout.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanity-io/sanity-template-gatsby-portfolio/HEAD/template/web/src/styles/layout.css -------------------------------------------------------------------------------- /template/web/src/templates/project.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanity-io/sanity-template-gatsby-portfolio/HEAD/template/web/src/templates/project.js --------------------------------------------------------------------------------