mirror of
https://github.com/urbit/shrub.git
synced 2024-12-15 21:03:10 +03:00
a33fffa6ce
Since Soto is the name of the relay, its location in Landscape should be the application it relays to: Dojo. This commit amends the mount paths and source paths accordingly.
28 lines
682 B
JavaScript
28 lines
682 B
JavaScript
import React, { Component } from 'react';
|
|
import classnames from 'classnames';
|
|
import _ from 'lodash';
|
|
|
|
|
|
export default class sotoTile extends Component {
|
|
|
|
render() {
|
|
return (
|
|
<div className="w-100 h-100 relative" style={{background: "#1a1a1a"}}>
|
|
<a className="w-100 h-100 db no-underline" href="/~dojo">
|
|
<p className="gray label-regular b absolute"
|
|
style={{ left: 8, top: 4 }}>
|
|
Dojo
|
|
</p>
|
|
<img src="~dojo/img/Tile.png"
|
|
className="absolute"
|
|
style={{ left: 30, top: 30, height: "174px", width: "174px"}}
|
|
/>
|
|
</a>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
}
|
|
|
|
window.sotoTile = sotoTile;
|