-
Notifications
You must be signed in to change notification settings - Fork 200
Expand file tree
/
Copy pathNav.jsx
More file actions
47 lines (32 loc) · 893 Bytes
/
Nav.jsx
File metadata and controls
47 lines (32 loc) · 893 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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
// Nav.jsx
import styles from './Nav.module.css';
import Button from '../Elements/Button/Button';
const Nav = () => {
return (
<nav className={`${styles.nav} flex align-items-center`}>
<img
src="./img/Logo.gif"
alt="Before I Die Logo"
className={styles.imgfluid}
/>
<div className={styles['navbar-buttons']}>
<Button theme="matrix">
<a
href="https://github.com/BeforeIDieCode/BeforeIDieAchievements"
className={styles['github-link']}
target="_blank"
>
<img
src="./img/GitHub Logo.png"
alt="GitHub Logo"
className={styles['github-logo']}
style={{ width: '40px', height: '40px' }}
/>
GitHub
</a>
</Button>
</div>
</nav>
);
};
export default Nav;