first commit

This commit is contained in:
Olu Amey
2023-01-16 13:09:45 -05:00
commit a6ebce376c
271 changed files with 39454 additions and 0 deletions
+29
View File
@@ -0,0 +1,29 @@
import React from "react";
import collectionData from "../../data/collectionplan_data.json";
import Layout from "../Partials/Layout";
import MainSection from "./MainSection";
export default function MyCollection() {
return (
<>
<Layout>
<div className="mycollection-wrapper">
<div className="main-wrapper">
{/* heading */}
<div className="flex justify-between items-center mb-6">
<div>
<h1 className="text-26 font-bold text-dark-gray dark:text-white">
<span>My Collection</span>
</h1>
</div>
</div>
<MainSection
className="mb-10"
collectionData={collectionData.data}
/>
</div>
</div>
</Layout>
</>
);
}