Commit initial : version fonctionnelle du projet
This commit is contained in:
21
client/src/components/Navbar.jsx
Normal file
21
client/src/components/Navbar.jsx
Normal file
@ -0,0 +1,21 @@
|
||||
import React from 'react';
|
||||
import Navbar from 'react-bootstrap/Navbar';
|
||||
import Nav from 'react-bootstrap/Nav';
|
||||
|
||||
export default function NavbarComponent() {
|
||||
return (
|
||||
<Navbar bg="dark" variant="dark" expand="lg">
|
||||
<Navbar.Brand href="#home" className="ms-3">
|
||||
Gestionnaire de Tâches Pro
|
||||
</Navbar.Brand>
|
||||
<Navbar.Toggle aria-controls="basic-navbar-nav" />
|
||||
<Navbar.Collapse id="basic-navbar-nav">
|
||||
<Nav className="me-auto ms-3">
|
||||
<Nav.Link href="#home">Accueil</Nav.Link>
|
||||
<Nav.Link href="#features">Fonctionnalités</Nav.Link>
|
||||
<Nav.Link href="#about">À Propos</Nav.Link>
|
||||
</Nav>
|
||||
</Navbar.Collapse>
|
||||
</Navbar>
|
||||
);
|
||||
}
|
Reference in New Issue
Block a user