diff --git a/src/assets/images/kids-waiting.jpg b/src/assets/images/kids-waiting.jpg
new file mode 100644
index 0000000..4e47ef2
Binary files /dev/null and b/src/assets/images/kids-waiting.jpg differ
diff --git a/src/components/Home/FamilyDash.jsx b/src/components/Home/FamilyDash.jsx
index f5d9602..05f16e0 100644
--- a/src/components/Home/FamilyDash.jsx
+++ b/src/components/Home/FamilyDash.jsx
@@ -3,7 +3,8 @@ import datas from "../../data/product_data.json";
import TopSellerTopBuyerSliderSection from "./TopSellerTopBuyerSliderSection";
import CommonHead from "../UserHeader/CommonHead";
import FamilyActiveLSlde from "./FamilyActiveLSlde";
-
+import OverviewSection from "../ActiveBids/OverviewSection";
+import ParentWaiting from "../MyPendingJobs/ParentWaiting";
export default function FamilyDash(props) {
@@ -18,7 +19,8 @@ export default function FamilyDash(props) {
commonHeadData={props.commonHeadData}
/>
-
+ {/**/}
+
);
diff --git a/src/components/MyPendingJobs/ParentWaiting.jsx b/src/components/MyPendingJobs/ParentWaiting.jsx
new file mode 100644
index 0000000..cf2f468
--- /dev/null
+++ b/src/components/MyPendingJobs/ParentWaiting.jsx
@@ -0,0 +1,95 @@
+import React, { useState } from "react";
+import { Link } from "react-router-dom";
+import { toast } from "react-toastify";
+import activeAidsBanner from "../../assets/images/kids-waiting.jpg";
+import HeroUser from "../../assets/images/hero-user.png";
+import CountDown from "../Helpers/CountDown";
+
+export default function ParentWaiting({ className }) {
+ const [addFavorite, setValue] = useState(false);
+ const favoriteHandler = () => {
+ if (!addFavorite) {
+ setValue(true);
+ toast.success("Added to Favorite List");
+ } else {
+ setValue(false);
+ toast.warn("Remove to Favorite List");
+ }
+ };
+ return (
+ <>
+
+
+
Waiting for Parent to Get Started...
+
+
+
+

+
+
+
+
+
+ Lock and Lob x Fiesta Spurs
+
+
+ ID : 2320382
+
+
+ {/* user */}
+
+
+

+
+
+
+ Brokln Simons
+
+
+ @broklinslam_75
+
+
+
+
+
+
+
+
+
+ View Art Work
+
+
+
+
+
+
+ >
+ );
+}
+