diff --git a/src/branding/branding.js b/src/branding/branding.js index 6ecfb73..7a83fdb 100644 --- a/src/branding/branding.js +++ b/src/branding/branding.js @@ -18,8 +18,7 @@ import { villasweb_footer, villasweb_home } from './villasweb/villasweb-functions'; import villasweb_values from './villasweb/villasweb-values'; -import { slew_home } from './slew/slew-home'; -import { slew_welcome } from './slew/slew-welcome'; +import { slew_home, slew_welcome } from './slew/slew-functions'; import slew_values from './slew/slew-values'; class Branding { diff --git a/src/branding/slew/slew-home.js b/src/branding/slew/slew-functions.js similarity index 90% rename from src/branding/slew/slew-home.js rename to src/branding/slew/slew-functions.js index 4494e9c..d15da26 100644 --- a/src/branding/slew/slew-home.js +++ b/src/branding/slew/slew-functions.js @@ -19,7 +19,6 @@ import './slew.css' export function slew_home(title) { - return (
Logo VILLASweb @@ -56,6 +55,13 @@ export function slew_home(title) { Logo EU
) - } +export function slew_welcome() { + return ( +
+

Welcome!

+

SLEW is a learning platform for running experiments in a virtual power engineering world. + The platform enables to interact with the experiments in real time and perform analyses on the experimental results.

+
) +} \ No newline at end of file diff --git a/src/branding/slew/slew-welcome.js b/src/branding/slew/slew-welcome.js deleted file mode 100644 index a37dd96..0000000 --- a/src/branding/slew/slew-welcome.js +++ /dev/null @@ -1,33 +0,0 @@ -/** - * This file is part of VILLASweb. - * - * VILLASweb is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. - * - * VILLASweb is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with VILLASweb. If not, see . - ******************************************************************************/ - import React from 'react'; - - export function slew_welcome() { - - return ( -
-

Welcome!

- -

SLEW is a learning platform for running experiments in a virtual power engineering world. - The platform enables to interact with the experiments in real time and perform analyses on the experimental results.

- - -
) - - } - - \ No newline at end of file