Remove coming soon page

This commit is contained in:
soupette 2019-12-16 17:36:30 +01:00
parent 326f543f48
commit e302b210b3
2 changed files with 0 additions and 38 deletions

View File

@ -24,7 +24,6 @@ import { SHOW_TUTORIALS } from '../../config';
import Header from '../../components/Header/index';
import Logout from '../../components/Logout';
import NavTopRightWrapper from '../../components/NavTopRightWrapper';
import ComingSoonPage from '../ComingSoonPage';
import LeftMenu from '../LeftMenu';
import ListPluginsPage from '../ListPluginsPage';
import LocaleToggle from '../LocaleToggle';
@ -174,7 +173,6 @@ export class Admin extends React.Component {
path="/plugins/:pluginId"
render={this.renderPluginDispatcher}
/>
<Route path="/plugins" component={ComingSoonPage} />
<Route
path="/list-plugins"
render={props => this.renderRoute(props, ListPluginsPage)}
@ -185,7 +183,6 @@ export class Admin extends React.Component {
render={this.renderMarketPlace}
exact
/>
<Route path="/configuration" component={ComingSoonPage} exact />
<Route key="7" path="" component={NotFoundPage} />
<Route key="8" path="404" component={NotFoundPage} />
</Switch>

View File

@ -1,35 +0,0 @@
/*
*
* ComingSoonPage
*
*/
import React from 'react';
import { PluginHeader } from 'strapi-helper-plugin';
import PageTitle from '../../components/PageTitle';
const ComingSoonPage = () => {
return (
<div>
<PageTitle title="Coming soon" />
<div>
<div
className="container-fluid"
style={{ padding: '18px 30px', overflow: 'hidden' }}
>
<PluginHeader
title={{
id: 'app.components.ComingSoonPage.comingSoon',
}}
description={{
id: 'app.components.ComingSoonPage.featuresNotAvailable',
}}
actions={[]}
/>
</div>
</div>
</div>
);
};
export default ComingSoonPage;