Updated SignUpPanel styles, Added to multiple pages/layouts

• Updated:
- SignUpPanel styles

• Added:
- SignupPanel to multiple pages/layouts
This commit is contained in:
mgabdev
2020-07-24 18:53:09 -05:00
parent a81f62ca52
commit f6966ff382
5 changed files with 34 additions and 5 deletions

View File

@@ -6,6 +6,7 @@ import Layout from './layout'
import GroupInfoPanel from '../components/panel/group_info_panel'
import WhoToFollowPanel from '../components/panel/who_to_follow_panel'
import GroupSidebarPanel from '../components/panel/groups_panel'
import SignupPanel from '../components/panel/sign_up_panel'
import LinkFooter from '../components/link_footer'
import GroupHeader from '../components/group_header'
import SidebarPanelGroup from '../components/sidebar_panel_group'
@@ -78,6 +79,7 @@ export default class GroupLayout extends ImmutablePureComponent {
page={`group.${groupId}`}
layout={[
<GroupInfoPanel group={group} key='group-page-info-panel' />,
<SignupPanel key='group-page-signup-panel' />,
<WhoToFollowPanel key='group-page-wtf-panel' />,
<GroupSidebarPanel isSlim key='group-page-group-panel' />,
<LinkFooter key='group-page-link-footer' />,

View File

@@ -8,6 +8,7 @@ import LinkFooter from '../components/link_footer'
import ProfileStatsPanel from '../components/panel/profile_stats_panel'
import ProfileInfoPanel from '../components/panel/profile_info_panel'
import MediaGalleryPanel from '../components/panel/media_gallery_panel'
import SignUpPanel from '../components/panel/sign_up_panel'
import NavigationBar from '../components/navigation_bar'
import FooterBar from '../components/footer_bar'
import ProfileHeader from '../components/profile_header'
@@ -118,6 +119,7 @@ export default class ProfileLayout extends ImmutablePureComponent {
<ProfileStatsPanel account={account} />
<ProfileInfoPanel account={account} />
{ !unavailable && <MediaGalleryPanel account={account} /> }
<SignUpPanel />
<LinkFooter />
</div>
</Sticky>