├── .babelrc ├── .eslintrc ├── .github └── workflows │ └── actions.yml ├── .gitignore ├── .nvimlog ├── CNAME ├── CONTRIBUTING.md ├── LICENSE ├── Procfile ├── README.md ├── architecture.md ├── package.json ├── public ├── fonts │ └── JosefinSans.ttf ├── images │ ├── background.png │ ├── code-image.png │ └── incogly-party.gif ├── index.html ├── manifest.json ├── package.json └── robots.txt ├── src ├── .prettierrc ├── App.js ├── components │ ├── Home │ │ ├── Home.scss │ │ └── index.jsx │ ├── NavBar │ │ ├── index.js │ │ └── index.scss │ └── Video │ │ ├── Video.scss │ │ └── index.jsx ├── global_styling │ ├── fonts.scss │ ├── globals_styles.scss │ ├── index.scss │ └── variables.scss ├── index.js └── utils │ └── index.js └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mexili/incogly/HEAD/.babelrc -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mexili/incogly/HEAD/.eslintrc -------------------------------------------------------------------------------- /.github/workflows/actions.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mexili/incogly/HEAD/.gitignore -------------------------------------------------------------------------------- /.nvimlog: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CNAME: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mexili/incogly/HEAD/CNAME -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mexili/incogly/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mexili/incogly/HEAD/LICENSE -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web: node server.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mexili/incogly/HEAD/README.md -------------------------------------------------------------------------------- /architecture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mexili/incogly/HEAD/architecture.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mexili/incogly/HEAD/package.json -------------------------------------------------------------------------------- /public/fonts/JosefinSans.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mexili/incogly/HEAD/public/fonts/JosefinSans.ttf -------------------------------------------------------------------------------- /public/images/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mexili/incogly/HEAD/public/images/background.png -------------------------------------------------------------------------------- /public/images/code-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mexili/incogly/HEAD/public/images/code-image.png -------------------------------------------------------------------------------- /public/images/incogly-party.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mexili/incogly/HEAD/public/images/incogly-party.gif -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mexili/incogly/HEAD/public/index.html -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mexili/incogly/HEAD/public/manifest.json -------------------------------------------------------------------------------- /public/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mexili/incogly/HEAD/public/package.json -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mexili/incogly/HEAD/public/robots.txt -------------------------------------------------------------------------------- /src/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mexili/incogly/HEAD/src/.prettierrc -------------------------------------------------------------------------------- /src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mexili/incogly/HEAD/src/App.js -------------------------------------------------------------------------------- /src/components/Home/Home.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mexili/incogly/HEAD/src/components/Home/Home.scss -------------------------------------------------------------------------------- /src/components/Home/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mexili/incogly/HEAD/src/components/Home/index.jsx -------------------------------------------------------------------------------- /src/components/NavBar/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mexili/incogly/HEAD/src/components/NavBar/index.js -------------------------------------------------------------------------------- /src/components/NavBar/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mexili/incogly/HEAD/src/components/NavBar/index.scss -------------------------------------------------------------------------------- /src/components/Video/Video.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mexili/incogly/HEAD/src/components/Video/Video.scss -------------------------------------------------------------------------------- /src/components/Video/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mexili/incogly/HEAD/src/components/Video/index.jsx -------------------------------------------------------------------------------- /src/global_styling/fonts.scss: -------------------------------------------------------------------------------- 1 | @import "https://fonts.googleapis.com/css?family=Josefin Sans"; 2 | -------------------------------------------------------------------------------- /src/global_styling/globals_styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mexili/incogly/HEAD/src/global_styling/globals_styles.scss -------------------------------------------------------------------------------- /src/global_styling/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mexili/incogly/HEAD/src/global_styling/index.scss -------------------------------------------------------------------------------- /src/global_styling/variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mexili/incogly/HEAD/src/global_styling/variables.scss -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mexili/incogly/HEAD/src/index.js -------------------------------------------------------------------------------- /src/utils/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mexili/incogly/HEAD/src/utils/index.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mexili/incogly/HEAD/yarn.lock --------------------------------------------------------------------------------