Pablo Solar VilariƱo
2020-06-19 49a69db8fa634d24fc03f35cb8589e87c260fa1f
commit | author | age
a0dac2 1 import React, { Component } from 'react';
MC 2 import rhtLogo from './training_black.png'
3
4 import { TextContent, Text } from '@patternfly/react-core'
5
6 export default class WelcomePage extends Component {
7     render() {
8         return (
9             <TextContent>
10                 <Text component="h1" className="centered">
11                     <b>Welcome to the currency exchange application of DO328!</b>
12                 </Text>
13                 <div className="centered">
14                     <img src={rhtLogo} alt="Red Hat Training Logo" />
15                 </div>
16                 <Text component="p">
17                     Please choose one of the two links on the left:
18                 </Text>
19                 <ul>
20                     <li>Historical data for seeing currency's exchange rate in time</li>
21                     <li>Exchange for seeing how much money is your amount worth in a different currency</li>
22                 </ul>
23                 <Text component="p">
1e067d 24                     For detailed info about the structure of this application, see the 
MC 25                     <Text component="a" href="https://github.com/RedHatTraining/DO328-apps/" >
26                         DO328-apps
27                     </Text> repository.
a0dac2 28                 </Text>
MC 29                 <Text component="p">
1264f7 30                     You can ask questions or file issues <Text component="a" href="https://github.com/RedHatTraining/DO328-apps/issues">here</Text>.
a0dac2 31                 </Text>
MC 32             </TextContent>
33
34         )
35     }
1e067d 36 }