-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathHeader.js
More file actions
37 lines (35 loc) · 1.16 KB
/
Header.js
File metadata and controls
37 lines (35 loc) · 1.16 KB
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
import React from 'react';
import { NavLink } from 'react-router-dom';
import './Header.css';
function Header() {
return (
<div className='cortex-navigation' style={{
borderTop: '4px solid #f9de8f',
borderBottom: '1px solid black',
boxSizing: 'border-box',
borderLeft: '0',
borderRight: '0',
textAlign: 'center',
color: 'white',
fontSize: '30px',
fontFamily: '"Montserrat", sans-serif',
fontWeight: 'bold',
}}>
<ul style={{
display: 'flex',
flexWrap: 'wrap',
margin: 'auto',
padding: '0',
maxWidth: '800px',
justifyContent: 'space-between',
alignItems: 'center',
height: '100%',
}}>
<li><NavLink to="/"><span>Home</span></NavLink></li>
<li><NavLink to="/downloads"><span>Downloads</span></NavLink></li>
<li><NavLink to="/get_involved"><span>Get Involved</span></NavLink></li>
</ul>
</div>
);
}
export default Header;