diff --git a/coverage/src/components/Header.jsx.html b/coverage/src/components/Header.jsx.html new file mode 100644 index 0000000..e32bcc7 --- /dev/null +++ b/coverage/src/components/Header.jsx.html @@ -0,0 +1,142 @@ + + + + +
++ Press n or j to go to the next uncovered block, b, p or k for the previous block. +
+ +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 | + + + + + + + + + + + + + + + + + + + | import React from 'react'; +import { Container, Navbar } from 'react-bootstrap'; +import 'bootstrap-icons/font/bootstrap-icons.css'; +import './Header.css'; + +const Header = () => { + return ( + <Navbar bg="light" className="header-navbar fixed-top justify-content-center"> + <Container className="d-flex justify-content-center"> + <Navbar.Brand href="/" className="text-center d-flex align-items-center"> + <i className="bi bi-house-door-fill" style={{ fontSize: '2rem', color: '#4B7260' }}></i> + <span className="ms-3 good-neighbor-text">Good Neighbor</span> + </Navbar.Brand> + </Container> + </Navbar> + ); +}; + +export default Header; + |