-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathHeader.jsx
More file actions
31 lines (29 loc) · 1.08 KB
/
Header.jsx
File metadata and controls
31 lines (29 loc) · 1.08 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
// @ts-nocheck
import React from 'react';
import logo from './logo.svg';
import bundlebeelogo from './logo.png'
import GitHub from './git.svg';
import NPM from './npm.svg';
import '../styles/header.css';
const Header = () => {
return (
<div className="header">
<nav>
<div className="navWide">
<img src={logo} className="App-logo" alt="logo" width="160"/>
<div>
<img src={bundlebeelogo} alt="Bundle Bee Logo" />
<div><p className="subTitle"> Simplify Your Build Process</p></div>
</div>
</div>
<div className="navWide">
<a href="#home">HOME</a>
<a href="#demo">DEMO</a>
<a href="https://github.com/bundlebee/bundle-bee/wiki" target="_blank">DOCS</a>
<a href="https://github.com/bundlebee/bundle-bee" target="_blank"><img src={GitHub} alt="GitHub Logo" /></a>
</div>
</nav>
</div>
)
};
export default Header;