mirror of
https://git.rwth-aachen.de/acs/public/villas/web/
synced 2025-03-09 00:00:01 +01:00
added welcome page for villasweb brand
This commit is contained in:
parent
564ba577dd
commit
052db03e03
2 changed files with 19 additions and 1 deletions
|
@ -15,7 +15,7 @@
|
|||
* along with VILLASweb. If not, see <http://www.gnu.org/licenses/>.
|
||||
******************************************************************************/
|
||||
|
||||
import { villasweb_footer, villasweb_home } from './villasweb/villasweb-functions';
|
||||
import { villasweb_footer, villasweb_home, villasweb_welcome } from './villasweb/villasweb-functions';
|
||||
import villasweb_values from './villasweb/villasweb-values';
|
||||
|
||||
import { slew_home, slew_welcome } from './slew/slew-functions';
|
||||
|
@ -88,6 +88,9 @@ class Branding {
|
|||
getWelcome() {
|
||||
var welcome = '';
|
||||
switch (this.brand) {
|
||||
case 'villasweb':
|
||||
welcome = villasweb_welcome();
|
||||
break;
|
||||
case 'slew':
|
||||
welcome = slew_welcome();
|
||||
break;
|
||||
|
|
|
@ -15,8 +15,23 @@
|
|||
* along with VILLASweb. If not, see <http://www.gnu.org/licenses/>.
|
||||
******************************************************************************/
|
||||
import React from 'react';
|
||||
import { Button } from 'react-bootstrap';
|
||||
import { NavLink } from 'react-router-dom';
|
||||
|
||||
|
||||
export function villasweb_welcome() {
|
||||
let url = 'https://villas.fein-aachen.org/doc/web.html';
|
||||
return (
|
||||
<div >
|
||||
<h1>Welcome!</h1>
|
||||
<p>VILLASweb is a tool to configure real-time co-simulations and display simulation real-time data.
|
||||
It enables the management and monitoring of simulators, models and simulations.</p>
|
||||
<span className='solid-button'>
|
||||
<Button key="learnmore" onClick={e => window.location = url }>Learn more</Button>
|
||||
</span>
|
||||
</div>)
|
||||
}
|
||||
|
||||
export function villasweb_home(title, username, userid, role) {
|
||||
return (
|
||||
<div className="home-container">
|
||||
|
|
Loading…
Add table
Reference in a new issue