import React from 'react'; import Page from './page'; import Footer from './footer'; import RecentTorrents from './recent-torrents' import Search from './search' import {Card, CardActions, CardHeader, CardMedia, CardTitle, CardText} from 'material-ui/Card'; import Background from './images/pirate-mod.jpg' import RaisedButton from 'material-ui/RaisedButton'; const Header = (props) => { return ( } >
{ window.router('/downloads') }} backgroundColor='#2080E4' labelColor='white' style={{height: 60, borderRadius: 5, margin: 5, zIndex: 1}} buttonStyle={{borderRadius: 5}} icon={ } /> { window.router('/top') }} backgroundColor='#B1CE57' labelColor='white' style={{height: 60, width: 120, borderRadius: 5, margin: 5, zIndex: 1}} buttonStyle={{borderRadius: 5}} icon={ } />
Welcome to ROTB! This is file search engine based on the torrents from the internet. Here you can easily find torrent or file that you intrested for. We are not responsible for any content: this is only information about content that collected automatically!
) } export {Header} export default class IndexPage extends Page { constructor(props) { super(props) this.setTitle('Rats On The Boat - Content Search Engine'); } render() { return (
); } }