const React = require('react'); const _ = require('lodash'); const cx = require('classnames'); const Nav = require('naturalcrit/nav/nav.jsx'); const Navbar = require('../../navbar/navbar.jsx'); const NavItem = require('../../navbar/navitems.js'); //const BrewInterface = require('homebrewery/brewInterface/brewInterface.jsx'); const BrewCard = require('homebrewery/brewCard/brewCard.jsx'); //const Actions = require('homebrewery/brew.actions.js'); const HomePage = React.createClass({ getDefaultProps: function() { return { topBrews : [] }; }, renderNavbar : function(){ return What's new {/*} New Brew */} }, renderNavigation : function(){ return

Effortlessly create Authnetic looking D&D homebrews with just text

New

This is some sample text

Search

This is some sample text

Docs

This is some sample text

Account

This is some sample text

}, renderTopBrews : function(){ return
{_.map(this.props.brews, (brew)=>)}
}, render : function(){ return
{this.renderNavbar()}
hero

The Homebrewery

{this.renderNavigation()} {this.renderTopBrews()}
} }); module.exports = HomePage;