Skip to content

Commit

Permalink
final Commit
Browse files Browse the repository at this point in the history
  • Loading branch information
Deepak-Mahanta committed Nov 28, 2024
1 parent 067ab90 commit 366e321
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/components/Campus/Campus.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ const Campus = () => {
<div className='campus'>
<div className="gallery ">
<img src={gallery_1} alt="" />
<img src={gallery_2} alt="" id='order-1'/>
<img src={gallery_2} alt="" />
<img src={gallery_3} alt="" />
<img src={gallery_4} alt="" />
</div>
Expand Down
2 changes: 1 addition & 1 deletion src/components/Footer/Footer.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
.footer {
margin: 10pa auto;
margin: 10px auto;
display: flex;
align-items: center;
justify-content: space-between;
Expand Down
2 changes: 1 addition & 1 deletion src/components/Navbar/Navbar.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ const Navbar = () => {
window.scrollY > 50 ? setsticky(true) : setsticky(false);
});
}, []);

const [mobileMenu, setMobileMenu] = useState(false)
const toggleMenu = () =>{
mobileMenu? setMobileMenu(false) : setMobileMenu(true);
Expand Down

0 comments on commit 366e321

Please sign in to comment.