Move FooterEnd into footer
This commit is contained in:
@@ -6,7 +6,6 @@ import actions from '../actions';
|
|||||||
import Header from './Header';
|
import Header from './Header';
|
||||||
import Footer from './Footer';
|
import Footer from './Footer';
|
||||||
import Router from './Router';
|
import Router from './Router';
|
||||||
import FooterEnd from './FooterEnd';
|
|
||||||
|
|
||||||
function App(props) {
|
function App(props) {
|
||||||
return (
|
return (
|
||||||
@@ -20,7 +19,6 @@ function App(props) {
|
|||||||
</div>
|
</div>
|
||||||
<div className="page__footer">
|
<div className="page__footer">
|
||||||
<Footer {...props} />
|
<Footer {...props} />
|
||||||
<FooterEnd {...props} />
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -1,6 +1,7 @@
|
|||||||
import React from 'react';
|
import React from 'react';
|
||||||
import classNames from 'classnames';
|
import classNames from 'classnames';
|
||||||
import Branding from './Branding';
|
import Branding from './Branding';
|
||||||
|
import FooterEnd from './FooterEnd';
|
||||||
import { assetUrl, getItemPageNames, isMobileViewport } from '../../common/config';
|
import { assetUrl, getItemPageNames, isMobileViewport } from '../../common/config';
|
||||||
|
|
||||||
export default function Footer({ items, pageName }) {
|
export default function Footer({ items, pageName }) {
|
||||||
@@ -14,6 +15,7 @@ export default function Footer({ items, pageName }) {
|
|||||||
AOE is a leading global provider of services for digital transformation and digital business models. AOE relies exclusively on established Enterprise Open Source technologies. This leads to innovative solutions, digital products and portals in agile software projects, and helps build long-lasting, strategic partnerships with our customers.
|
AOE is a leading global provider of services for digital transformation and digital business models. AOE relies exclusively on established Enterprise Open Source technologies. This leads to innovative solutions, digital products and portals in agile software projects, and helps build long-lasting, strategic partnerships with our customers.
|
||||||
</span>
|
</span>
|
||||||
</Branding>
|
</Branding>
|
||||||
|
<FooterEnd/>
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user