mirror of
https://github.com/strapi/strapi.git
synced 2026-01-08 05:04:10 +00:00
Remove coming soon page
This commit is contained in:
parent
326f543f48
commit
e302b210b3
@ -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>
|
||||
|
||||
@ -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;
|
||||
Loading…
x
Reference in New Issue
Block a user