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
+10
View File
@@ -0,0 +1,10 @@
import React from "react";
import ActiveBids from "../components/ActiveBids";
export default function AcitveBidsPage() {
return (
<>
<ActiveBids />
</>
);
}
+6
View File
@@ -0,0 +1,6 @@
import React from "react";
import AuthProfile from "../components/AuthPages/AuthProfile";
export default function AuthProfilePage() {
return <AuthProfile />;
}
+6
View File
@@ -0,0 +1,6 @@
import React from "react";
import CollectionItem from "../components/MyCollection/CollectionItem";
export default function CollectionItemPage() {
return <CollectionItem />;
}
+10
View File
@@ -0,0 +1,10 @@
import React from "react";
import ForgotPassword from "../components/AuthPages/ForgotPassword";
export default function ForgotPasswordPages() {
return (
<>
<ForgotPassword />
</>
);
}
+10
View File
@@ -0,0 +1,10 @@
import React from "react";
import History from "../components/History";
export default function HistoryPage() {
return (
<>
<History />
</>
);
}
+10
View File
@@ -0,0 +1,10 @@
import React from "react";
import Home from "../components/Home";
export default function HomePages() {
return (
<>
<Home />
</>
);
}
+12
View File
@@ -0,0 +1,12 @@
import React from "react";
import Login from "../components/AuthPages/Login";
function LoginPage() {
return (
<>
<Login />
</>
);
}
export default LoginPage;
+10
View File
@@ -0,0 +1,10 @@
import React from "react";
import MarketPlace from "../components/MarketPlace";
export default function MarketPlacePage() {
return (
<>
<MarketPlace />
</>
);
}
+6
View File
@@ -0,0 +1,6 @@
import React from "react";
import MyCollection from "../components/MyCollection";
export default function MyCollectionPage() {
return <MyCollection />;
}
+10
View File
@@ -0,0 +1,10 @@
import React from "react";
import MyWallet from "../components/MyWallet";
export default function MyWalletPage() {
return (
<>
<MyWallet />
</>
);
}
+10
View File
@@ -0,0 +1,10 @@
import React from "react";
import Notification from "../components/Notification";
export default function notification() {
return (
<>
<Notification />
</>
);
}
+10
View File
@@ -0,0 +1,10 @@
import React from "react";
import Saved from "../components/Saved";
export default function SavedPage() {
return (
<>
<Saved />
</>
);
}
+6
View File
@@ -0,0 +1,6 @@
import React from "react";
import Sell from "../components/Sell";
export default function SellPage() {
return <Sell />;
}
+10
View File
@@ -0,0 +1,10 @@
import React from "react";
import Settings from "../components/Settings";
export default function SettingsPage() {
return (
<>
<Settings />
</>
);
}
+10
View File
@@ -0,0 +1,10 @@
import React from "react";
import ShopDetails from "../components/ShopDetails";
export default function ShopDetailsPage() {
return (
<>
<ShopDetails />
</>
);
}
+12
View File
@@ -0,0 +1,12 @@
import React from "react";
import SignUp from "../components/AuthPages/SignUp";
function SignupPage() {
return (
<>
<SignUp />
</>
);
}
export default SignupPage;
+10
View File
@@ -0,0 +1,10 @@
import React from "react";
import UpdatePassword from "../components/AuthPages/UpdatePassword";
export default function UpdatePasswordPages() {
return (
<>
<UpdatePassword />
</>
);
}
+6
View File
@@ -0,0 +1,6 @@
import React from "react";
import UploadProduct from "../components/UploadProduct";
export default function UploadProductPage() {
return <UploadProduct />;
}
+6
View File
@@ -0,0 +1,6 @@
import React from "react";
import UserProfile from "../components/AuthPages/UserProfile";
export default function UserProfilePage() {
return <UserProfile />;
}
+6
View File
@@ -0,0 +1,6 @@
import React from "react";
import VerifyYou from "../components/AuthPages/VerifyYou";
export default function VerifyYouPages() {
return <VerifyYou />;
}