mirror of
https://github.com/oceanprotocol/commons.git
synced 2023-03-15 18:03:00 +01:00
42 lines
1.3 KiB
TypeScript
42 lines
1.3 KiB
TypeScript
import React, { PureComponent } from 'react'
|
|
import { NavLink } from 'react-router-dom'
|
|
import { ReactComponent as Logo } from '@oceanprotocol/art/logo/logo.svg'
|
|
import AccountStatus from '../molecules/AccountStatus'
|
|
import styles from './Header.module.scss'
|
|
|
|
import menu from '../../data/menu'
|
|
import meta from '../../data/meta.json'
|
|
|
|
const MenuItem = ({ item }: { item: any }) => (
|
|
<NavLink
|
|
to={item.link}
|
|
className={styles.link}
|
|
activeClassName={styles.linkActive}
|
|
exact
|
|
>
|
|
{item.title}
|
|
</NavLink>
|
|
)
|
|
|
|
export default class Header extends PureComponent {
|
|
public render() {
|
|
return (
|
|
<header className={styles.header}>
|
|
<div className={styles.headerContent}>
|
|
<NavLink to="/" className={styles.headerLogo}>
|
|
<Logo className={styles.headerLogoImage} />
|
|
<h1 className={styles.headerTitle}>{meta.title}</h1>
|
|
</NavLink>
|
|
|
|
<nav className={styles.headerMenu}>
|
|
{menu.map(item => (
|
|
<MenuItem key={item.title} item={item} />
|
|
))}
|
|
<AccountStatus className={styles.accountStatus} />
|
|
</nav>
|
|
</div>
|
|
</header>
|
|
)
|
|
}
|
|
}
|