Removed Bg Img

This commit was merged in pull request #221.
This commit is contained in:
2023-06-29 13:39:07 +01:00
parent 593ea74388
commit c8d6d3d7d4
4 changed files with 8 additions and 6 deletions
+4 -3
View File
@@ -4,6 +4,7 @@ import { Link } from "react-router-dom";
// import profileBanner from "../../assets/images/profile-cover.png";
// import collections from "../../data/collectionplan_data.json"; Should this be cleaned off?
// import marketPlace from "../../data/marketplace_data.json";
import LoadingSpinner from "../../components/Spinners/LoadingSpinner"
import products from "../../data/product_data.json";
import Layout from "../Partials/Layout";
import {
@@ -104,12 +105,12 @@ export default function Resources(props) {
<>
<Layout>
<div className="nft-authprofile-wrapper w-full">
{/* {__resources.length == 0 ||
{__resources.length == 0 ||
Object.keys(__resources).length == 0 ? (
<div className="w-full h-full flex items-center justify-center">
<LoadingSpinner size={16} color="sky-blue" />
</div>
) : ( */}
) : (
<div className="main-wrapper w-full">
<div className="content-wrapper-profile-only w-full mb-6">
<div className="auth-tab-content relative mb-10">
@@ -136,7 +137,7 @@ export default function Resources(props) {
{selectedTabComponent}
</div>
</div>
{/* )} */}
)}
</div>
</Layout>
</>