27 lines
695 B
JavaScript
27 lines
695 B
JavaScript
import { Component } from 'react'
|
|
import Image from 'next/image'
|
|
import styles from './Hero.module.scss'
|
|
import logo from './assets/warframe_logo.png'
|
|
|
|
export default class Hero extends Component {
|
|
render () {
|
|
return (
|
|
<div className={styles.hero}>
|
|
<div className={styles.logo}>
|
|
<Image
|
|
src={logo}
|
|
alt='logo'
|
|
layout='responsive'
|
|
width={500}
|
|
height={300}
|
|
/>
|
|
</div>
|
|
<div className={styles.text}>
|
|
<h1>Market Gaps</h1>
|
|
<p>Find a profitable difference between the price of the set and the price of the sum of it's parts.</p>
|
|
</div>
|
|
</div>
|
|
)
|
|
}
|
|
}
|