Skip to content

Commit cf8e000

Browse files
committed
hide about section and darken the navbar
1 parent e9da93f commit cf8e000

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/App.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ function App() {
99
return (
1010
<>
1111
<Navbar title="Bloging Page" aboutTitle="About Us"></Navbar>
12-
<About />
12+
{/* <About /> */}
1313
<div className="container">
1414
<Textform heading="Enter Text To View Transform"></Textform>
1515
{/* <Textform2 Headings="EXPERIMENT ZONE"></Textform2> */}

src/components/Navbar.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import PropTypes from 'prop-types'
44

55
export default function Navbar(props) {
66
return (
7-
<nav className="navbar navbar-expand-lg navbar-light bg-light">
7+
<nav className="navbar navbar-expand-lg navbar-dark bg-dark">
88
<div className="container-fluid">
99
<a className="navbar-brand" href="#">{ props.title }</a>
1010
<button className="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">

0 commit comments

Comments
 (0)