-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
💡 (#180) Criando navbar para o contact
- Loading branch information
Showing
4 changed files
with
64 additions
and
2 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
import React from "react"; | ||
import "../../style/components/navbarContact.css"; | ||
import logo from "../../assets/logo 3.svg"; | ||
|
||
const NavbarContact = () => { | ||
return ( | ||
<div className="container-navbar-contact"> | ||
<img alt="" src={logo}></img> | ||
|
||
<div className="button-navbar-contact"> | ||
<button className="home-navbar-contact"> | ||
<a href="http://localhost:3000/">Home</a> | ||
</button> | ||
<button className="aboutUs-navbar-contact"> | ||
<a href="http://localhost:3000/quemsomos">Quem Somos</a> | ||
</button> | ||
<button className="contact-navbar-contact"> | ||
{" "} | ||
<a href="http://localhost:3000/contato">Contato</a> | ||
</button> | ||
</div> | ||
</div> | ||
); | ||
}; | ||
export default NavbarContact; |
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,32 @@ | ||
.container-navbar-contact { | ||
width: 100%; | ||
background-color: #ffff; | ||
height: 7vh; | ||
box-shadow: 2px 2px 2px 1px rgba(0, 0, 0, 0.2); | ||
margin-bottom: 5rem; | ||
display: flex; | ||
} | ||
|
||
.container-navbar-contact img { | ||
width: 18vw; | ||
height: 7vh; | ||
} | ||
|
||
.button-navbar-contact button { | ||
background-color: #ffff; | ||
color: #003366; | ||
border: none; | ||
font-size: 18px; | ||
padding-right: 75px; | ||
cursor: pointer; | ||
margin-top: 1.5rem; | ||
} | ||
.button-navbar-contact a { | ||
text-decoration: none; | ||
color: #003366; | ||
} | ||
.button-navbar-contact:hover { | ||
background-color: #ffff; | ||
color: #006633; | ||
cursor: pointer; | ||
} |
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