├── .gitignore ├── LICENSE ├── README.md ├── gatsby-config.js ├── package.json ├── src ├── components │ ├── Content.tsx │ ├── Description.tsx │ └── Header.tsx ├── favicon.png ├── github.svg ├── pages │ └── index.tsx ├── right-arrow.svg ├── sites │ ├── bella.jpg │ ├── cara.jpg │ ├── emilia.jpg │ ├── emma.jpg │ ├── jodie.jpg │ ├── minimal.jpg │ ├── prismic.jpg │ └── sites.yaml └── typings.d.ts ├── tailwind.js ├── tsconfig.json ├── tslint.json └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LekoArts/gatsby-starter-portfolio/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LekoArts/gatsby-starter-portfolio/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LekoArts/gatsby-starter-portfolio/HEAD/README.md -------------------------------------------------------------------------------- /gatsby-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LekoArts/gatsby-starter-portfolio/HEAD/gatsby-config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LekoArts/gatsby-starter-portfolio/HEAD/package.json -------------------------------------------------------------------------------- /src/components/Content.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LekoArts/gatsby-starter-portfolio/HEAD/src/components/Content.tsx -------------------------------------------------------------------------------- /src/components/Description.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LekoArts/gatsby-starter-portfolio/HEAD/src/components/Description.tsx -------------------------------------------------------------------------------- /src/components/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LekoArts/gatsby-starter-portfolio/HEAD/src/components/Header.tsx -------------------------------------------------------------------------------- /src/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LekoArts/gatsby-starter-portfolio/HEAD/src/favicon.png -------------------------------------------------------------------------------- /src/github.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LekoArts/gatsby-starter-portfolio/HEAD/src/github.svg -------------------------------------------------------------------------------- /src/pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LekoArts/gatsby-starter-portfolio/HEAD/src/pages/index.tsx -------------------------------------------------------------------------------- /src/right-arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LekoArts/gatsby-starter-portfolio/HEAD/src/right-arrow.svg -------------------------------------------------------------------------------- /src/sites/bella.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LekoArts/gatsby-starter-portfolio/HEAD/src/sites/bella.jpg -------------------------------------------------------------------------------- /src/sites/cara.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LekoArts/gatsby-starter-portfolio/HEAD/src/sites/cara.jpg -------------------------------------------------------------------------------- /src/sites/emilia.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LekoArts/gatsby-starter-portfolio/HEAD/src/sites/emilia.jpg -------------------------------------------------------------------------------- /src/sites/emma.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LekoArts/gatsby-starter-portfolio/HEAD/src/sites/emma.jpg -------------------------------------------------------------------------------- /src/sites/jodie.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LekoArts/gatsby-starter-portfolio/HEAD/src/sites/jodie.jpg -------------------------------------------------------------------------------- /src/sites/minimal.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LekoArts/gatsby-starter-portfolio/HEAD/src/sites/minimal.jpg -------------------------------------------------------------------------------- /src/sites/prismic.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LekoArts/gatsby-starter-portfolio/HEAD/src/sites/prismic.jpg -------------------------------------------------------------------------------- /src/sites/sites.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LekoArts/gatsby-starter-portfolio/HEAD/src/sites/sites.yaml -------------------------------------------------------------------------------- /src/typings.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LekoArts/gatsby-starter-portfolio/HEAD/src/typings.d.ts -------------------------------------------------------------------------------- /tailwind.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LekoArts/gatsby-starter-portfolio/HEAD/tailwind.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LekoArts/gatsby-starter-portfolio/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LekoArts/gatsby-starter-portfolio/HEAD/tslint.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LekoArts/gatsby-starter-portfolio/HEAD/yarn.lock --------------------------------------------------------------------------------