File tree Expand file tree Collapse file tree 1 file changed +3
-7
lines changed
project-1/project-app/src/components Expand file tree Collapse file tree 1 file changed +3
-7
lines changed Original file line number Diff line number Diff line change @@ -5,9 +5,9 @@ import '../App.css';
55
66export default function Navbar ( props ) {
77 return (
8- < nav className = { `navbar navbar-expand-lg ${ props . mode } bg-${ props . mode } ` } >
8+ < nav className = { `navbar navbar-expand-lg navbar-dark ${ props . mode } bg-${ props . mode } ` } >
99 < div className = "container-fluid" >
10- < a className = "navbar-brand" href = "/" style = { { color : "white" } } > { props . title } </ a >
10+ < a className = "navbar-brand" href = "/" > { props . title } </ a >
1111 < button className = "navbar-toggler" type = "button" data-bs-toggle = "collapse" data-bs-target = "#navbarSupportedContent" aria-controls = "navbarSupportedContent" aria-expanded = "false" aria-label = "Toggle navigation" >
1212 < span className = "navbar-toggler-icon" > </ span >
1313 </ button >
@@ -17,13 +17,9 @@ export default function Navbar(props){
1717 < a className = "nav-link active" aria-current = "page" href = "/" > Home</ a >
1818 </ li >
1919 < li className = "nav-item" >
20- < a className = "nav-link" href = "/" style = { { color : "white" } } > { props . aboutText } </ a >
20+ < a className = "nav-link" href = "/" > { props . aboutText } </ a >
2121 </ li >
2222 </ ul >
23- < form className = "d-flex" role = "search" >
24- < input className = "form-control me-2" type = "search" placeholder = "Search" aria-label = "Search" />
25- < button className = "btn btn-outline-success" type = "submit" > Search</ button >
26- </ form >
2723 </ div >
2824 </ div >
2925 </ nav >
You can’t perform that action at this time.
0 commit comments