/homepage

Cryptoeconomics Lab HP

Primary LanguageCSS

cryptoeconomiclabs.com

This is the source code for the cryptoeconomicslab.com homepage

About

Cryptoeconomics Lab is a team of distributed entrepreneurs, engineers, and blockchain experts.

Features

Getting started

git clone https://github.com/cryptoeconomicslab/homepage.git homepage
cd homepage
yarn install
yarn start

Then open http://localhost:3100/ to see your app.

Structure overview

├── README.md
├── next.config.js
├── package.json
├── pages
│   ├── _document.js
│   ├── about.js
│   └── index.js
├── routes.js
├── server
│   └── index.js
├── src
│   ├── actions
│   │   └── repos.js
│   ├── components
│   │   └── SearchResults.js
│   ├── config.js
│   ├── containers
│   │   └── SearchRepoContainer.js
│   ├── libs
│   │   └── github.js
│   ├── reducers
│   │   ├── index.js
│   │   └── repos.js
│   ├── store
│   │   └── createStore.js
│   ├── styles
│   │   ├── SearchResults.scss
│   │   └── base.scss
│   └── test
│       ├── __mocks__
│       │   └── styleMock.js
│       ├── components
│       │   └── SearchResults.test.js
│       └── jest.setup.js
└── yarn.lock