diff --git a/public/content/blurb.md b/public/content/blurb.md new file mode 100644 index 0000000..1321566 --- /dev/null +++ b/public/content/blurb.md @@ -0,0 +1,10 @@ +This is a resource accumulation game, with some similarities to idle games. The idea is that you recruit new units once per day, train them as soldiers, and send them to attack other players. You can also train spies and scientists, which each grant their own benefits. + +You can follow the developer KR Game Studios here: + +* https://discord.gg/FQmz8TN +* https://facebook.com/KRGameStudios +* https://twitter.com/KRGameStudios +* https://www.patreon.com/krgamestudios +* https://github.com/KRGameStudios + diff --git a/public/content/task_list.md b/public/content/task_list.md index 488bacd..9fa18c9 100644 --- a/public/content/task_list.md +++ b/public/content/task_list.md @@ -23,7 +23,7 @@ Minor Patch --- -* Game Balance. +* Game Balance - move balance variables to a config file. * Images to social media instead of links. * Occasional flickering when rendering Profile page. * Pull the balance numbers out into a config file. diff --git a/src/components/pages/home.jsx b/src/components/pages/home.jsx index ea0a1c0..67e3137 100644 --- a/src/components/pages/home.jsx +++ b/src/components/pages/home.jsx @@ -3,7 +3,7 @@ import { withRouter, Link } from 'react-router-dom'; //panels import CommonLinks from '../panels/common_links.jsx'; -import Blurb from '../panels/blurb.jsx'; +import Markdown from '../panels/markdown.jsx'; import News from '../panels/news.jsx'; class Home extends React.Component { @@ -37,7 +37,9 @@ class Home extends React.Component {
A game in early development.
See all news...
diff --git a/src/components/panels/blurb.jsx b/src/components/panels/blurb.jsx deleted file mode 100644 index 7a986d0..0000000 --- a/src/components/panels/blurb.jsx +++ /dev/null @@ -1,24 +0,0 @@ -import React from 'react'; - -export default class Blurb extends React.Component { - render() { - let Link = (props) => {props.to}; - - return ( -A game in early development.
-This is a resource accumulation game, with some similarities to idle games. The idea is that you recruit new units once per day, train them as soldiers, and send them to attack other players. You can also train spies and scientists, which each grant their own benefits.
-You can follow the developer KR Game Studios here:
-Loading markdown...
);