blob: 46c0bf7c46f66940f70e3f019fd1bd230693e7ce [file] [log] [blame]
pineafana5ce9102021-09-02 17:21:31 +01001import { Component } from "react";
2import Styles from '../styles/header.module.css';
3
4class Header extends Component {
5 constructor(props) {
6 super(props);
Samuel Shuert604e31d2021-09-02 16:06:20 -05007 this.keys = []
pineafana5ce9102021-09-02 17:21:31 +01008 }
9
pineafana5ce9102021-09-02 17:21:31 +010010 render() {
11 return (
12 <div className={Styles.header} style={{
13 backgroundImage:`linear-gradient(69.44deg, #${this.props.gradient[0]} 0%, #${this.props.gradient[1]} 100%)`,
14 margin: "0"
15 }} id={this.props.id ? this.props.id : null}>
16 <img className={Styles.backgroundImage} src={`/Headers/${this.props.wave}.svg`} />
17 <div className={Styles.panel}>
18 <div className={Styles.titleContainer}>
19 <h1 className={Styles.title}>{this.props.name}</h1>
20 </div>
21 <p className={Styles.subtext + " " + (this.props.buttons.length ? Styles.subtextExtra : null)}>{this.props.subtext}</p>
22 <div className={Styles.buttonLayout}>
23 {
Samuel Shuert604e31d2021-09-02 16:06:20 -050024 this.props.buttons ? this.props.buttons.map((button, index) => {
pineafana5ce9102021-09-02 17:21:31 +010025 return <a
Samuel Shuert604e31d2021-09-02 16:06:20 -050026 key={index}
pineafana5ce9102021-09-02 17:21:31 +010027 className={Styles.button}
28 style={{backgroundColor:`#${button.color}`, color:`#${button.buttonText}`}}
29 href={button.link}>{button.text}
30 </a>
31 }) : null
32 }
33 </div>
34 </div>
35 <span className={Styles.arrowSpan + " " + (this.props.hideArrow ? Styles.arrowHidden : null)}>
Samuel Shuert604e31d2021-09-02 16:06:20 -050036 <a href="#start"><img src="/Arrow.svg" className={Styles.arrow} /></a>
pineafana5ce9102021-09-02 17:21:31 +010037 </span>
38 </div>
39 )
40 }
41}
42
43export default Header;