This commit is contained in:
mgabdev
2020-02-05 17:45:48 -05:00
parent df346596cf
commit fa66d082f8
22 changed files with 553 additions and 480 deletions

View File

@@ -1,7 +1,11 @@
import { Fragment } from 'react';
// import GroupSidebarPanel from '../features/groups/sidebar_panel';
import GroupSidebarPanel from '../features/groups/sidebar_panel';
import LinkFooter from '../components/link_footer';
// import PromoPanel from '../components/promo_panel';
import PromoPanel from '../components/panel/promo_panel';
import SignUpPanel from '../components/panel/sign_up_panel';
import WhoToFollowPanel from '../components/panel/who_to_follow_panel';
import TrendsPanel from '../components/panel/trends_panel';
import ProgressPanel from '../components/panel/progress_panel';
// import UserPanel from '../components/user_panel';
import PageLayout from '../components/page_layout';
// import TimelineComposeBlock from '../components/timeline_compose_block';
@@ -15,15 +19,20 @@ export default class HomePage extends PureComponent {
layout={{
RIGHT: (
<Fragment>
{/*<GroupSidebarPanel />*/}
{/*<PromoPanel />*/}
{ /* <SearchInput /> */ }
{ /* <GroupSidebarPanel /> */ }
<PromoPanel />
<SignUpPanel />
{ /* <WhoToFollowPanel /> */ }
{ /* <TrendsPanel /> */ }
<ProgressPanel />
<LinkFooter />
</Fragment>
),
}}
>
{/*<TimelineComposeBlock size={46} shouldCondense={true} autoFocus={false} />*/}
{/*children*/}
{ /* children */ }
</PageLayout>
)
}