diff --git a/src/components/NavigationBar/NavigationBar.tsx b/src/components/NavigationBar/NavigationBar.tsx index 5bc3f68..b8a0c9a 100644 --- a/src/components/NavigationBar/NavigationBar.tsx +++ b/src/components/NavigationBar/NavigationBar.tsx @@ -30,48 +30,20 @@ const NavigationBar = () => { diff --git a/src/components/Router/Router.tsx b/src/components/Router/Router.tsx index 465ae3c..71e3ea9 100644 --- a/src/components/Router/Router.tsx +++ b/src/components/Router/Router.tsx @@ -1,10 +1,20 @@ -import { BrowserRouter as Router, Route } from "react-router-dom"; - import React from "react"; - -const Home = () => { - //const style = { background: "black" }; - return
; +import { Route, BrowserRouter } from "react-router-dom"; +import { Home } from "../../pages/Home"; +/* +import Home from "./Home"; +import Sobre from "./Sobre"; +import Usuario from "./Usuario"; + + + +*/ +const Routes = () => { + return ( + + } /> + + ); }; -export { Home }; +export { Routes }; diff --git a/src/styles/partials/navigation.scss b/src/styles/partials/navigation.scss index e36fff0..696ad3c 100644 --- a/src/styles/partials/navigation.scss +++ b/src/styles/partials/navigation.scss @@ -9,3 +9,12 @@ .logoM3Img { width: 136px; } +.nav-link { + font-family: "Roboto"; + color: white; + font-size: 14px; + font-weight: 500; + @media screen and (min-width: 2500px) { + font-size: 28px; + } +}