diff --git a/src/common/header.js b/src/common/header.js index 7d72e0c..e8c70c2 100644 --- a/src/common/header.js +++ b/src/common/header.js @@ -23,13 +23,14 @@ import React from 'react'; import { Col, Button } from 'react-bootstrap'; import { Hidden } from 'react-grid-system' import Icon from './icon'; +import config from '../config'; class Header extends React.Component { render() { return (
-

VILLASweb

+

{config.instance} - {config.subtitle}

diff --git a/src/config.js b/src/config.js index 82be462..6b68fa3 100644 --- a/src/config.js +++ b/src/config.js @@ -2,10 +2,11 @@ const config = { publicPathBase: 'public/', instance: 'VILLASweb', + subtitle: 'ACS', admin: { - name: 'Institute for Automation of Complex Power Systems, RWTH Aachen University, Germany', + name: 'Institute for Automation of Complex Power Systems (ACS), RWTH Aachen University, Germany', mail: 'stvogel@eonerc.rwth-aachen.de' } -} +}; export default config