Skip to content

Commit

Permalink
hide about section and darken the navbar
Browse files Browse the repository at this point in the history
  • Loading branch information
vishwajitvm committed Apr 19, 2022
1 parent e9da93f commit cf8e000
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/App.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ function App() {
return (
<>
<Navbar title="Bloging Page" aboutTitle="About Us"></Navbar>
<About />
{/* <About /> */}
<div className="container">
<Textform heading="Enter Text To View Transform"></Textform>
{/* <Textform2 Headings="EXPERIMENT ZONE"></Textform2> */}
Expand Down
2 changes: 1 addition & 1 deletion src/components/Navbar.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import PropTypes from 'prop-types'

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

0 comments on commit cf8e000

Please sign in to comment.