pineafan | a5ce910 | 2021-09-02 17:21:31 +0100 | [diff] [blame] | 1 | import { Component } from "react"; |
| 2 | import Styles from '../styles/header.module.css'; |
pineafan | 876af7d | 2021-10-14 20:31:21 +0100 | [diff] [blame^] | 3 | import Head from 'next/head'; |
pineafan | a5ce910 | 2021-09-02 17:21:31 +0100 | [diff] [blame] | 4 | |
| 5 | class Header extends Component { |
| 6 | constructor(props) { |
| 7 | super(props); |
Samuel Shuert | 604e31d | 2021-09-02 16:06:20 -0500 | [diff] [blame] | 8 | this.keys = [] |
pineafan | a5ce910 | 2021-09-02 17:21:31 +0100 | [diff] [blame] | 9 | } |
| 10 | |
pineafan | a5ce910 | 2021-09-02 17:21:31 +0100 | [diff] [blame] | 11 | render() { |
| 12 | return ( |
| 13 | <div className={Styles.header} style={{ |
| 14 | backgroundImage:`linear-gradient(69.44deg, #${this.props.gradient[0]} 0%, #${this.props.gradient[1]} 100%)`, |
| 15 | margin: "0" |
| 16 | }} id={this.props.id ? this.props.id : null}> |
pineafan | 876af7d | 2021-10-14 20:31:21 +0100 | [diff] [blame^] | 17 | <Head> |
| 18 | <title>{this.props.name} - Clicks Minute Per</title> |
| 19 | <meta name="description" content={this.props.subtext} /> |
| 20 | <meta name="og:description" content={this.props.subtext} /> |
| 21 | <meta name="theme-color" content={this.props.gradient[0]} /> |
| 22 | <meta name="og:theme-color" content={this.props.gradient[0]} /> |
| 23 | </Head> |
pineafan | aed3024 | 2021-09-04 09:33:40 +0100 | [diff] [blame] | 24 | <img alt="" className={Styles.backgroundImage} src={`/Headers/${this.props.wave}.svg`} /> |
pineafan | a5ce910 | 2021-09-02 17:21:31 +0100 | [diff] [blame] | 25 | <div className={Styles.panel}> |
| 26 | <div className={Styles.titleContainer}> |
| 27 | <h1 className={Styles.title}>{this.props.name}</h1> |
| 28 | </div> |
| 29 | <p className={Styles.subtext + " " + (this.props.buttons.length ? Styles.subtextExtra : null)}>{this.props.subtext}</p> |
| 30 | <div className={Styles.buttonLayout}> |
| 31 | { |
Samuel Shuert | 604e31d | 2021-09-02 16:06:20 -0500 | [diff] [blame] | 32 | this.props.buttons ? this.props.buttons.map((button, index) => { |
pineafan | a5ce910 | 2021-09-02 17:21:31 +0100 | [diff] [blame] | 33 | return <a |
Samuel Shuert | 604e31d | 2021-09-02 16:06:20 -0500 | [diff] [blame] | 34 | key={index} |
pineafan | a5ce910 | 2021-09-02 17:21:31 +0100 | [diff] [blame] | 35 | className={Styles.button} |
| 36 | style={{backgroundColor:`#${button.color}`, color:`#${button.buttonText}`}} |
Samuel Shuert | 835c71f | 2021-09-03 15:49:26 -0500 | [diff] [blame] | 37 | href={button.link} |
pineafan | aed3024 | 2021-09-04 09:33:40 +0100 | [diff] [blame] | 38 | target={button.target ? "_blank" : null} |
| 39 | rel="noreferror"> |
Samuel Shuert | 835c71f | 2021-09-03 15:49:26 -0500 | [diff] [blame] | 40 | {button.text} |
pineafan | a5ce910 | 2021-09-02 17:21:31 +0100 | [diff] [blame] | 41 | </a> |
| 42 | }) : null |
| 43 | } |
| 44 | </div> |
| 45 | </div> |
| 46 | <span className={Styles.arrowSpan + " " + (this.props.hideArrow ? Styles.arrowHidden : null)}> |
pineafan | aed3024 | 2021-09-04 09:33:40 +0100 | [diff] [blame] | 47 | <a href="#start"><img alt="Down arrow" src="/Arrow.svg" className={Styles.arrow} /></a> |
pineafan | a5ce910 | 2021-09-02 17:21:31 +0100 | [diff] [blame] | 48 | </span> |
| 49 | </div> |
| 50 | ) |
| 51 | } |
| 52 | } |
| 53 | |
| 54 | export default Header; |