diff --git a/src/components/navbar/NavbarContact.js b/src/components/navbar/NavbarContact.js new file mode 100644 index 00000000..4a778974 --- /dev/null +++ b/src/components/navbar/NavbarContact.js @@ -0,0 +1,25 @@ +import React from "react"; +import "../../style/components/navbarContact.css"; +import logo from "../../assets/logo 3.svg"; + +const NavbarContact = () => { + return ( +
+ + +
+ + + +
+
+ ); +}; +export default NavbarContact; diff --git a/src/pages/Contact.js b/src/pages/Contact.js index 36defe73..310eef8a 100644 --- a/src/pages/Contact.js +++ b/src/pages/Contact.js @@ -3,7 +3,7 @@ import "../style/pages/contact.css"; import Imagem_Homen from "../assets/imagem-homen-ruivo.svg"; import Input from "../components/Input"; import emailjs from "@emailjs/browser"; -import NavbarSimple from "../components/navbar/NavbarSimple"; +import NavbarContact from "../components/navbar/NavbarContact"; export default function Contact() { const [nome, setNome] = useState(""); @@ -44,7 +44,7 @@ export default function Contact() { return ( <> - +

Contato

diff --git a/src/style/components/navbarContact.css b/src/style/components/navbarContact.css new file mode 100644 index 00000000..dbb216ca --- /dev/null +++ b/src/style/components/navbarContact.css @@ -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; +} diff --git a/src/style/components/navbarSimple.css b/src/style/components/navbarSimple.css index 70945a9d..74fe850b 100644 --- a/src/style/components/navbarSimple.css +++ b/src/style/components/navbarSimple.css @@ -48,6 +48,11 @@ text-decoration: none; color: #003366; } + +.login-navbar-simple a { + text-decoration: none; + color: #003366; +} .button-login-navbar-simple :hover { background-color: #003366; color: #ffff;