-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #6 from eliska-n/fix/default-burn
Add navbar
- Loading branch information
Showing
6 changed files
with
54 additions
and
40 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,8 +7,11 @@ | |
|
||
<meta | ||
name="description" | ||
content="Web site created using create-react-app" | ||
content="Share secrets securely." | ||
/> | ||
<meta property="og:image" content="./img/pssst.png" /> | ||
<meta property="og:image:width" content="300" /> | ||
<meta property="og:image:height" content="300" /> | ||
<!-- | ||
manifest.json provides metadata used when your web app is installed on a | ||
user's mobile device or desktop. See https://developers.google.com/web/fundamentals/web-app-manifest/ | ||
|
@@ -23,6 +26,7 @@ | |
work correctly both with client-side routing and a non-root public URL. | ||
Learn how to configure a non-root public URL by running `npm run build`. | ||
--> | ||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.css"> | ||
<title>Bagman</title> | ||
</head> | ||
<body> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
import '@popperjs/core'; | ||
|
||
|
||
function Navbar() { | ||
return ( | ||
<> | ||
<div className="container"> | ||
<nav className="navbar navbar-expand-lg bg-body-lightpink"> | ||
<div className="container-fluid"> | ||
<div class="collapse navbar-collapse" id="navbarText"> | ||
<ul class="navbar-nav me-auto mb-2 mb-lg-0"> | ||
<li class="nav-item"> | ||
<a className="navbar-brand fs-3 text-secondary" href="#"> | ||
<i class="bi bi-house text-secondary fs-3"></i> | ||
</a> | ||
</li> | ||
<li class="nav-item"> | ||
<a className="navbar-brand fs-3 text-secondary" href="#/unicorns"> | ||
<i class="bi bi-question-lg text-secondary fs-3"></i> | ||
</a> | ||
</li> | ||
<li class="nav-item"> | ||
<a className="navbar-brand fs-3 text-secondary" href="https://github.com/eliska-n/BagManUI"> | ||
<i class="bi bi-github text-secondary fs-3"></i> | ||
</a> | ||
</li> | ||
|
||
</ul> | ||
</div> | ||
</div> | ||
</nav> | ||
</div> | ||
|
||
</> | ||
) | ||
} | ||
|
||
export { Navbar }; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters