Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 0 additions & 22 deletions frontend/src/components/Footer.jsx

This file was deleted.

4 changes: 2 additions & 2 deletions frontend/src/components/Navbar.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,7 @@ function Navbar() {

{/* Mobile menu button */}
<div className="md:hidden flex items-center">
<motion.div
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We need a wallet connect button. It is the most essential functionality.

The overlap shouldn't be solved simply by removing the button.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

  1. Sir I have not removed the Wallet Connect Button, it can be still accessed, from the sidebar
image

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

OK.

{/* <motion.div
whileHover={{ scale: 1.05 }}
whileTap={{ scale: 0.95 }}
className="mr-4"
Expand All @@ -230,7 +230,7 @@ function Navbar() {
chainStatus="none"
showBalance={false}
/>
</motion.div>
</motion.div> */}
<motion.button
whileHover={{ scale: 1.1 }}
whileTap={{ scale: 0.9 }}
Expand Down
3 changes: 1 addition & 2 deletions frontend/src/page/Applayout.jsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// AppLayout.js
import Footer from "@/components/Footer";

import Navbar from "@/components/Navbar";
import React from "react";
import { Outlet } from "react-router-dom";
Expand All @@ -11,7 +11,6 @@ function Applayout() {
<main className="flex-1 pt-20 mx-auto w-full">
<Outlet />
</main>
<Footer />
</div>
);
}
Expand Down