development #17

Merged
SavioCarvalhoMoraes merged 22 commits from development into feature/body 2023-01-19 15:03:10 +00:00
3 changed files with 30 additions and 39 deletions
Showing only changes of commit 93e2b90796 - Show all commits

View File

@ -30,48 +30,20 @@ const NavigationBar = () => {
<div className="collapse navbar-collapse" id="navbarNavDropdown">
<ul className="navbar-nav">
<li className="nav-item">
<a className="nav-link active" aria-current="page" href="#">
Home
<a className="nav-link " aria-current="page" href="#">
CURSOS
</a>
</li>
<li className="nav-item">
<a className="nav-link" href="#">
Features
SAIBA MAIS
</a>
</li>
<li className="nav-item">
<a className="nav-link" href="#">
Pricing
INSTITUCIONAIS
</a>
</li>
<li className="nav-item dropdown">
<a
className="nav-link dropdown-toggle"
href="#"
role="button"
data-bs-toggle="dropdown"
aria-expanded="false"
>
Dropdown link
</a>
<ul className="dropdown-menu">
<li>
<a className="dropdown-item" href="#">
Action
</a>
</li>
<li>
<a className="dropdown-item" href="#">
Another action
</a>
</li>
<li>
<a className="dropdown-item" href="#">
Something else here
</a>
</li>
</ul>
</li>
</ul>
</div>
</div>

View File

@ -1,10 +1,20 @@
import { BrowserRouter as Router, Route } from "react-router-dom";
import React from "react";
const Home = () => {
//const style = { background: "black" };
return <div /*style={style}*/></div>;
import { Route, BrowserRouter } from "react-router-dom";
import { Home } from "../../pages/Home";
/*
import Home from "./Home";
import Sobre from "./Sobre";
import Usuario from "./Usuario";
<Route component={Home} path="/" exact />
<Route component={Sobre} path="/sobre" />
<Route component={Usuario} path="/usuario" />
*/
const Routes = () => {
return (
<BrowserRouter>
<Route path="/" element={<Home />} />
</BrowserRouter>
);
};
export { Home };
export { Routes };

View File

@ -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;
}
}