-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathheader.js
More file actions
28 lines (25 loc) · 824 Bytes
/
header.js
File metadata and controls
28 lines (25 loc) · 824 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
import React from "react"
import "./styles/header.scss"
import CampSpotsLogo from "images/icons/camp-spots-logo.svg"
import MegaNav from "./meganav/"
const Header = ({inert}) => {
return (
<div id="header" inert={inert}>
<div id="header-nav">
<div id="header-logo">
<a href="/" className="header-main-item">
<span className="logo-img">
<img src={CampSpotsLogo} />
</span>
<span className="logo-text">CampSpots</span>
</a>
</div>
<MegaNav />
<div id="header-login">
<a href="#">Login</a>
</div>
</div>
</div>
)
}
export default Header