-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathHeader.jsx
166 lines (149 loc) · 4.15 KB
/
Header.jsx
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
import React, { useState } from "react";
import { Link } from "gatsby";
import styled from "@emotion/styled";
import dimensions from "styles/dimensions";
import colors from "styles/colors";
import OutlineLogo from "components/_ui/OutlineLogo";
import {
Collapse,
Navbar,
NavbarToggler,
NavbarBrand,
Nav,
NavItem,
NavLink,
UncontrolledDropdown,
DropdownToggle,
DropdownMenu,
DropdownItem,
NavbarText
} from 'reactstrap';
const HeaderContainer = styled("div")`
background: ${colors.byteblue};
color: white;
box-shadow: 0px 9px 24px rgba(0, 0, 0, 0.4);
position: relative;
z-index: 10;
padding: 0;
`
const HeaderContent = styled(Navbar)`
max-width: ${dimensions.maxwidthDesktop}px;
padding-left: ${dimensions.paddingHorizontalDesktop}em;
padding-right: ${dimensions.paddingHorizontalDesktop}em;
padding-top: 0;
padding-bottom: 0;
margin: 0 auto;
@media(max-width: ${dimensions.maxwidthTablet}px) {
padding-left: ${dimensions.paddingHorizontalTablet}em;
padding-right: ${dimensions.paddingHorizontalTablet}em;
}
@media(max-width: ${dimensions.maxwidthMobile}px) {
}
`
const HeaderLinks = styled(Nav)`
justify-content: flex-end;
width: 100%;
@media(max-width: ${dimensions.maxwidthTablet}px) {
}
@media(max-width: ${dimensions.maxwidthMobile}px) {
}
li {
margin-left: 1rem;
margin-right: 1rem;
}
a {
color: white;
text-decoration: none;
border-bottom: 3px solid transparent;
font-weight: 500;
font-size: 0.95em;
height: 100%;
padding-bottom: 1em;
padding-top: 1em;
display: inline-block;
position: relative;
&:after {
position: absolute;
content: "";
bottom: 0.5rem;
width: 90%;
height: 2px;
background: transparent;
right: 50%;
margin-right: -45%;
transition: 100ms ease-in-out background;
}
&:hover {
color: white;
&:after {
background: white;
transition: 100ms ease-in-out background;
}
}
&.Link--is-active {
&:after {
background: white;
transition: 100ms ease-in-out background;
}
}
}
`
const Header = () => {
const [isOpen, setIsOpen] = useState(false);
const toggle = () => setIsOpen(!isOpen);
return (
<HeaderContainer>
<HeaderContent className='navbar-dark' expand="md">
<NavbarBrand href="/"><OutlineLogo /></NavbarBrand>
<NavbarToggler onClick={toggle} />
<Collapse isOpen={isOpen} navbar>
<HeaderLinks className="nav mr-auto navbar-right" navbar>
<NavItem>
<Link
activeClassName="Link--is-active"
to="/launchpad">
Launchpad
</Link>
</NavItem>
<NavItem>
<Link
activeClassName="Link--is-active"
to="/programs">
Programs
</Link>
</NavItem>
<NavItem>
<Link
activeClassName="Link--is-active"
to="/curricula">
Curricula
</Link>
</NavItem>
<NavItem>
<Link
activeClassName="Link--is-active"
to="/work">
Work With Us
</Link>
</NavItem>
<NavItem>
<Link
activeClassName="Link--is-active"
to="/team">
Team
</Link>
</NavItem>
<NavItem>
<Link
activeClassName="Link--is-active"
to="/blog">
Blog
</Link>
</NavItem>
</HeaderLinks>
</Collapse>
</HeaderContent>
</HeaderContainer>
);
}
export default Header;