aboutsummaryrefslogtreecommitdiff
path: root/src/components/Header/Header.js
blob: 14edb764aa5317784ab91c648aff2982ceb8863c (plain)
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
/*
 * OpenBills - Self hosted browser app to generate and keep track of simple invoices
 * Version - 0
 * Licensed under the MIT license - https://opensource.org/licenses/MIT
 *
 * Copyright (c) 2021 Vidhu Kant Sharma
*/

import React from "react";
import "./Header.scss";

const Header = () => {
	// const [activeLink, updateActiveLink] = useState("home")
	return (
		<div className={"header"}>
			<div class="placeholder">
				<p class="inlineBlock">OpenBills</p>

			</div>
			<div className={"navBar"}>
				<nav>
					<a href="https://nhentai.net">Link1</a>
					<a href="https://youtube.com">Link2</a>
					<a href="https://google.com">Link3</a>
					<a href="https://github.com">Link4</a>
				</nav>
			</div>
		</div>
	)
}

export default Header