Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: footer is added to shop and user profile pages #1163

Closed
wants to merge 1 commit into from
Closed
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
2 changes: 2 additions & 0 deletions src/pages/Shop/Shop.jsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import React from "react";
import Navbar from "../../components/Navbar/Navbar";
import ComingSoon from "../../components/Cards/ComingSoon/ComingSoon";
import Footer from "../../components/Footer/Footer";

const Shop = () => {
return (
Expand All @@ -11,6 +12,7 @@ const Shop = () => {
<ComingSoon launchitem={`shop's page.`} />
</div>
</div>
<Footer />
</>
);
};
Expand Down
2 changes: 2 additions & 0 deletions src/pages/User/UserProfile.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ import { userEndpoints } from "../../assets/data/ApiEndpoints";
import fetcher from "../../utils/Fetcher";
import Button from "../../components/Button/GlobalButton/Button";
import Cookies from "js-cookie";
import Footer from "../../components/Footer/Footer";

const UserProfile = () => {
const navigate = useNavigate();
Expand Down Expand Up @@ -383,6 +384,7 @@ const UserProfile = () => {
)}
</div>
</div>
<Footer />
</>
);
};
Expand Down