Merge branch 'develop' into feat/setting-up-search-functionality

This commit is contained in:
Sharyn 2018-07-09 14:14:34 +02:00
commit bf631f5719
7 changed files with 23 additions and 17 deletions

3
.gitignore vendored
View File

@ -1,4 +1,5 @@
/out
.next
node_modules
.DS_Store
.DS_Store
yarn.lock

View File

@ -4,9 +4,10 @@ ETHPrize single page React website
## Setting up
- `git clone git@github.com:Nona-Creative/ETHPrize.git`
- `npm install`
- `npm run dev` runs the site at `localhost:3000`
- `yarn lint` runs the eslinter
`npm run dev` runs the site at `localhost:3000`
`npm run deploy` to deploy to `https://nona-creative.github.io/ETHPrize`
`yarn lint` runs the eslinter
## Deploy to staging
- `npm run deploy` to deploy
- This pushes the compiled code to a second repo at `https://github.com/Nona-Creative/nona-creative.github.io-ETHprize`
- View staging Github page at `https://nona-creative.github.io/nona-creative.github.io-ETHprize`

View File

@ -1,11 +1,11 @@
@font-face {
font-family: 'bebas_neuebold';
src: url('/static/fonts/bebasneue_bold-webfont.eot');
src: url('/static/fonts/bebasneue_bold-webfont.eot?#iefix') format('embedded-opentype'),
url('/static/fonts/bebasneue_bold-webfont.woff2') format('woff2'),
url('/static/fonts/bebasneue_bold-webfont.woff') format('woff'),
url('/static/fonts/bebasneue_bold-webfont.ttf') format('truetype'),
url('/static/fonts/bebasneue_bold-webfont.svg#bebas_neuebold') format('svg');
src: url('/nona-creative.github.io-ETHprize/static/fonts/bebasneue_bold-webfont.eot');
src: url('/nona-creative.github.io-ETHprize/static/fonts/bebasneue_bold-webfont.eot?#iefix') format('embedded-opentype'),
url('/nona-creative.github.io-ETHprize/static/fonts/bebasneue_bold-webfont.woff2') format('woff2'),
url('/nona-creative.github.io-ETHprize/static/fonts/bebasneue_bold-webfont.woff') format('woff'),
url('/nona-creative.github.io-ETHprize/static/fonts/bebasneue_bold-webfont.ttf') format('truetype'),
url('/nona-creative.github.io-ETHprize/static/fonts/bebasneue_bold-webfont.svg#bebas_neuebold') format('svg');
font-weight: normal;
font-style: normal;
}

View File

@ -1,8 +1,8 @@
import React from 'react';
import Parser from 'html-react-parser';
import Slider from 'react-slick';
import Modal from '../../components/modal';
import WordCloud from '../../components/wordCloud';
import Modal from '../modal';
import WordCloud from '../wordCloud';
import Data from '../../data/resources/wordclouds';
import './style.scss';

View File

@ -1,6 +1,10 @@
const withSass = require('@zeit/next-sass')
const withSass = require('@zeit/next-sass');
const dev = process && process.env && process.env.NODE_ENV === 'development';
module.exports =
withSass({
assetPrefix: dev ? '' : '/nona-creative.github.io-ETHprize',
exportPathMap: function(defaultPathMap) {
return {
'/': { page: '/' }

View File

@ -14,7 +14,7 @@
},
"config": {
"deployToGit": {
"repository": "git@github.com:Nona-Creative/ETHPrize.git",
"repository": "git@github.com:Nona-Creative/nona-creative.github.io-ETHprize.git",
"branch": "master",
"folder": "out",
"script": "npm run prod-build",

View File

@ -8,7 +8,7 @@ export default class MyDocument extends Document {
<Head>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" href="_next/static/style.css" />
<link rel="stylesheet" type="text/css" charset="UTF-8" href="//cdnjs.cloudflare.com/ajax/libs/slick-carousel/1.6.0/slick.min.css" />
<link rel="stylesheet" type="text/css" charSet="UTF-8" href="//cdnjs.cloudflare.com/ajax/libs/slick-carousel/1.6.0/slick.min.css" />
<link rel="stylesheet" type="text/css" href="//cdnjs.cloudflare.com/ajax/libs/slick-carousel/1.6.0/slick-theme.min.css" />
<link href="//fonts.googleapis.com/css?family=Roboto+Mono:400,700" rel="stylesheet" />
</Head>