Page Lyout

This commit is contained in:
Olu Amey
2023-01-25 17:05:49 -05:00
parent 0e91d44bc3
commit 0250d37679
16 changed files with 1374 additions and 64 deletions
+11 -12
View File
@@ -9,18 +9,17 @@ import TrendingSection from "./TrendingSection";
import UpdateTable from "./UpdateTable";
export default function Home() {
const trending = datas.datas;
const trending = datas.datas;
return (
<Layout>
<div className="home-page-wrapper">
<Hero className="mb-10" />
return (
<Layout>
<div className="home-page-wrapper">
{/* <Hero className="mb-10" />
<CreateNft />
<TrendingSection trending={trending} className="mb-10" />
<SellHistoryMarketVisitorAnalytic className="mb-10" />
<TopSellerTopBuyerSliderSection className="mb-10" />
<UpdateTable className="mb-10" />
</div>
</Layout>
);
<TrendingSection trending={trending} className="mb-10" />*/}
<SellHistoryMarketVisitorAnalytic className="mb-10"/> {/* <TopSellerTopBuyerSliderSection className="mb-10" /> */}
<UpdateTable className="mb-10"/>
</div>
</Layout>
);
}