mirror of
https://github.com/ascribe/onion.git
synced 2025-01-03 10:25:08 +01:00
Start to work on custom landing
This commit is contained in:
parent
df5295dffd
commit
33d599b923
@ -11,7 +11,7 @@ let RouteHandler = Router.RouteHandler;
|
|||||||
let PrizeApp = React.createClass({
|
let PrizeApp = React.createClass({
|
||||||
render() {
|
render() {
|
||||||
return (
|
return (
|
||||||
<div>
|
<div class="whitelabel-prize">
|
||||||
<RouteHandler />
|
<RouteHandler />
|
||||||
<Footer />
|
<Footer />
|
||||||
<GlobalNotification />
|
<GlobalNotification />
|
||||||
|
@ -1,12 +1,23 @@
|
|||||||
'use strict';
|
'use strict';
|
||||||
|
|
||||||
import React from 'react';
|
import React from 'react';
|
||||||
|
import Router from 'react-router';
|
||||||
|
|
||||||
|
let Link = Router.Link;
|
||||||
|
|
||||||
|
|
||||||
let Landing = React.createClass({
|
let Landing = React.createClass({
|
||||||
render() {
|
render() {
|
||||||
return (
|
return (
|
||||||
<div>
|
<div>
|
||||||
Hello from landing
|
<div class="hero">
|
||||||
|
Yay art prize!
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="buttons">
|
||||||
|
<Link to="login">Login</Link>
|
||||||
|
<Link to="signup">Signup</Link>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user