first commit
This commit is contained in:
@@ -0,0 +1,24 @@
|
||||
import React from "react";
|
||||
import products from "../../data/product_data.json";
|
||||
import CreateNft from "../Home/CreateNft";
|
||||
import Layout from "../Partials/Layout";
|
||||
import MainSection from "./MainSection";
|
||||
|
||||
export default function Saved() {
|
||||
const productData = [...products.datas, ...products.datas];
|
||||
return (
|
||||
<>
|
||||
<Layout>
|
||||
<div className="saved-page-wrapper w-full">
|
||||
<div className="main-wrapper w-full ">
|
||||
<div className="mb-6">
|
||||
<h1 className="text-26 font-bold text-dark-gray dark:text-white">All Saved</h1>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<MainSection products={productData} />
|
||||
<CreateNft />
|
||||
</Layout>
|
||||
</>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user