Home edit

This commit is contained in:
2023-02-09 21:52:50 -05:00
parent af7009955f
commit 11f1e97fbe
2 changed files with 138 additions and 9 deletions
+2 -9
View File
@@ -1,12 +1,8 @@
import React from "react";
import datas from "../../data/product_data.json";
import Layout from "../Partials/Layout";
import CreateNft from "./CreateNft";
import Hero from "./Hero";
import SellHistoryMarketVisitorAnalytic from "./SellHistoryMarketVisitorAnalytic";
import TopSellerTopBuyerSliderSection from "./TopSellerTopBuyerSliderSection";
import TrendingSection from "./TrendingSection";
import UpdateTable from "./UpdateTable";
import TotalRecentHx from "./TotalRecentHx";
export default function Home() {
const trending = datas.datas;
@@ -14,10 +10,7 @@ export default function Home() {
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" /> */}
<TotalRecentHx className="mb-10"/>
<UpdateTable className="mb-10"/>
</div>
</Layout>