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

@@ -3,6 +3,7 @@ import DefaultLayout from '../layouts/default_layout'
import ProgressPanel from '../components/panel/progress_panel'
import VerifiedAccountsPanel from '../components/panel/verified_accounts_panel'
import ShopPanel from '../components/panel/shop_panel'
import SignupPanel from '../components/panel/sign_up_panel'
import LinkFooter from '../components/link_footer'
export default class ExplorePage extends PureComponent {
@@ -22,6 +23,7 @@ export default class ExplorePage extends PureComponent {
noComposeButton
showBackBtn
layout={[
<SignupPanel key='explore-page-signup-panel' />,
<ProgressPanel key='explore-page-progress-panel' />,
<VerifiedAccountsPanel key='explore-page-verified-panel' />,
<ShopPanel key='explore-page-shop-panel' />,

View File

@@ -5,6 +5,7 @@ import PageTitle from '../features/ui/util/page_title'
import LinkFooter from '../components/link_footer'
import SearchFilterPanel from '../components/panel/search_filter_panel'
import TrendsPanel from '../components/panel/trends_panel'
import SignupPanel from '../components/panel/sign_up_panel'
import Search from '../components/search'
import Layout from '../layouts/layout'
@@ -64,6 +65,7 @@ class SearchPage extends PureComponent {
tabs={tabs}
page={`search.${qos}`}
layout={[
<SignupPanel key='search-page-signup-panel' />,
<SearchFilterPanel key='search-page-search-panel' />,
<TrendsPanel key='search-page-trends-panel' />,
<LinkFooter key='search-page-link-footer' />,