@@ -46,9 +36,7 @@ class HomePage extends ImmutablePureComponent {
-
- {hasPatron && }
- {hasCrypto && }
+ {LAYOUT.LEFT}
@@ -71,12 +59,7 @@ class HomePage extends ImmutablePureComponent {
- {/*
*/}
- {features.trends &&
}
- {features.suggestions &&
}
-
-
-
+ {LAYOUT.RIGHT}
diff --git a/app/soapbox/pages/search_page.js b/app/soapbox/pages/search_page.js
deleted file mode 100644
index 58a902b5a..000000000
--- a/app/soapbox/pages/search_page.js
+++ /dev/null
@@ -1,50 +0,0 @@
-import React from 'react';
-import PropTypes from 'prop-types';
-import { connect } from 'react-redux';
-import Header from '../features/search/components/header';
-import WhoToFollowPanel from '../features/ui/components/who_to_follow_panel';
-import LinkFooter from '../features/ui/components/link_footer';
-import SignUpPanel from '../features/ui/components/sign_up_panel';
-import { getFeatures } from 'soapbox/utils/features';
-
-const mapStateToProps = state => ({
- features: getFeatures(state.get('instance')),
-});
-
-const SearchPage = ({ children, features }) => (
-