├── .eslintignore ├── .eslintrc ├── .gitignore ├── .prettierignore ├── .prettierrc ├── README.md ├── gatsby-config.js ├── gatsby-node.js ├── package.json ├── src ├── components │ ├── AuthContent │ │ └── index.js │ ├── Content │ │ ├── ContentGraphic.js │ │ └── index.js │ ├── DatabaseContent │ │ └── index.js │ ├── Header │ │ └── index.js │ ├── Layout │ │ └── index.js │ ├── Logo │ │ └── index.js │ ├── Navigator │ │ └── index.js │ ├── StorageContent │ │ └── index.js │ └── TabBar │ │ └── index.js └── pages │ ├── analytics.js │ ├── authentication.js │ ├── database.js │ ├── functions.js │ ├── hosting.js │ ├── index.js │ ├── lab.js │ ├── ml.js │ ├── performance.js │ └── storage.js ├── static └── images │ └── avatar.jpg └── yarn.lock /.eslintignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | public 3 | mock 4 | -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willcode4food/gatsby-starter-paperbase/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willcode4food/gatsby-starter-paperbase/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willcode4food/gatsby-starter-paperbase/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willcode4food/gatsby-starter-paperbase/HEAD/.prettierrc -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willcode4food/gatsby-starter-paperbase/HEAD/README.md -------------------------------------------------------------------------------- /gatsby-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willcode4food/gatsby-starter-paperbase/HEAD/gatsby-config.js -------------------------------------------------------------------------------- /gatsby-node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willcode4food/gatsby-starter-paperbase/HEAD/gatsby-node.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willcode4food/gatsby-starter-paperbase/HEAD/package.json -------------------------------------------------------------------------------- /src/components/AuthContent/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willcode4food/gatsby-starter-paperbase/HEAD/src/components/AuthContent/index.js -------------------------------------------------------------------------------- /src/components/Content/ContentGraphic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willcode4food/gatsby-starter-paperbase/HEAD/src/components/Content/ContentGraphic.js -------------------------------------------------------------------------------- /src/components/Content/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willcode4food/gatsby-starter-paperbase/HEAD/src/components/Content/index.js -------------------------------------------------------------------------------- /src/components/DatabaseContent/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willcode4food/gatsby-starter-paperbase/HEAD/src/components/DatabaseContent/index.js -------------------------------------------------------------------------------- /src/components/Header/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willcode4food/gatsby-starter-paperbase/HEAD/src/components/Header/index.js -------------------------------------------------------------------------------- /src/components/Layout/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willcode4food/gatsby-starter-paperbase/HEAD/src/components/Layout/index.js -------------------------------------------------------------------------------- /src/components/Logo/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willcode4food/gatsby-starter-paperbase/HEAD/src/components/Logo/index.js -------------------------------------------------------------------------------- /src/components/Navigator/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willcode4food/gatsby-starter-paperbase/HEAD/src/components/Navigator/index.js -------------------------------------------------------------------------------- /src/components/StorageContent/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willcode4food/gatsby-starter-paperbase/HEAD/src/components/StorageContent/index.js -------------------------------------------------------------------------------- /src/components/TabBar/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willcode4food/gatsby-starter-paperbase/HEAD/src/components/TabBar/index.js -------------------------------------------------------------------------------- /src/pages/analytics.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willcode4food/gatsby-starter-paperbase/HEAD/src/pages/analytics.js -------------------------------------------------------------------------------- /src/pages/authentication.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willcode4food/gatsby-starter-paperbase/HEAD/src/pages/authentication.js -------------------------------------------------------------------------------- /src/pages/database.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willcode4food/gatsby-starter-paperbase/HEAD/src/pages/database.js -------------------------------------------------------------------------------- /src/pages/functions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willcode4food/gatsby-starter-paperbase/HEAD/src/pages/functions.js -------------------------------------------------------------------------------- /src/pages/hosting.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willcode4food/gatsby-starter-paperbase/HEAD/src/pages/hosting.js -------------------------------------------------------------------------------- /src/pages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willcode4food/gatsby-starter-paperbase/HEAD/src/pages/index.js -------------------------------------------------------------------------------- /src/pages/lab.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willcode4food/gatsby-starter-paperbase/HEAD/src/pages/lab.js -------------------------------------------------------------------------------- /src/pages/ml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willcode4food/gatsby-starter-paperbase/HEAD/src/pages/ml.js -------------------------------------------------------------------------------- /src/pages/performance.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willcode4food/gatsby-starter-paperbase/HEAD/src/pages/performance.js -------------------------------------------------------------------------------- /src/pages/storage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willcode4food/gatsby-starter-paperbase/HEAD/src/pages/storage.js -------------------------------------------------------------------------------- /static/images/avatar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willcode4food/gatsby-starter-paperbase/HEAD/static/images/avatar.jpg -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willcode4food/gatsby-starter-paperbase/HEAD/yarn.lock --------------------------------------------------------------------------------