diff --git a/package.json b/package.json
index 487766e..0aaf4ba 100644
--- a/package.json
+++ b/package.json
@@ -50,7 +50,9 @@
"prop-types": "^15.5.10",
"react": "^15.6.1",
"react-dom": "^15.6.1",
+ "react-fontawesome": "^1.6.1",
"react-helmet": "^5.1.3",
- "react-router": "^4.1.2"
+ "react-router": "^4.1.2",
+ "webfontloader": "^1.6.28"
}
}
diff --git a/src/App.jsx b/src/App.jsx
index 517b384..f404a2e 100644
--- a/src/App.jsx
+++ b/src/App.jsx
@@ -4,9 +4,19 @@ import moment from 'moment-timezone';
import Countdown from './Countdown';
import Header from './Header';
import getUpcomingDate from './getUpcomingDate';
+import FontAwesome from 'react-fontawesome';
+import WebFont from 'webfontloader';
+
import style from './App.sass';
+
+WebFont.load({
+ google: {
+ families: ['Titillium Web:300,400,700', 'sans-serif']
+ }
+});
+
class App extends React.Component {
static propTypes = {
getNow: PropTypes.func,
@@ -61,9 +71,12 @@ class App extends React.Component {
- The next VIzon draw is on {nextUpcomingDate.format('dddd')}, {nextUpcomingDate.format('L LT')}.
+ The next VIzon draw is on {nextUpcomingDate.format('dddd')}, {nextUpcomingDate.format('L LT z')}.