import React from 'react' import PropTypes from 'prop-types' import { CX, BREAKPOINT_EXTRA_SMALL, } from '../constants' import { me } from '../initial_state' import NavigationBar from '../components/navigation_bar' import LoggedOutNavigationBar from '../components/logged_out_navigation_bar' import FooterBar from '../components/footer_bar' import Responsive from '../features/ui/util/responsive_component' import ResponsiveClassesComponent from '../features/ui/util/responsive_classes_component' import WrappedBundle from '../features/ui/util/wrapped_bundle' import { AboutSidebar, GlobalFooter, SidebarXS, } from '../features/ui/util/async_components' class SettingsLayout extends React.PureComponent { componentWillMount() { this.menuItems = [ { title: 'About', to: '/about', }, // { // title: 'Assets', // to: '/about/assets', // }, { title: 'DMCA', to: '/about/dmca', }, { title: 'Investors', to: '/about/investors', }, // { // title: 'Press', // to: '/about/press', // }, { title: 'Privacy Policy', to: '/about/privacy', }, { title: 'Terms of Sale', to: '/about/sales', }, { title: 'Terms of Service', to: '/about/tos', }, ] } render() { const { children, title } = this.props const { menuItems } = this const mainBlockClasses = CX({ d: 1, w1015PX: 1, flexRow: 1, jcEnd: 1, py15: 1, mlAuto: !me, mrAuto: !me, }) return (