+ {/* the state (expried or bidding) */}
+
+ {state}
+
+
+ {/* the category & title (in 1 column) */}
+
+
{category}
+ {title}
+
+
+ {/* the date, location, duration & Price, price type (estimate or myoffer price) (in 2 columns)*/}
+
+ {/* Column 1 with icons */}
+
+
+
+
+
+
+
+
{duration} hours
+
+
+
+ {/* Column 2 */}
+
+
+ {/* show the different price based on the different price type */}$
+ {priceType === "My Offer" ? myOfferPrice : estimatePrice}
+
+
{priceType}
+
+
+
+ );
+};
+
+export default TaskCard;
diff --git a/client/src/pages/hello.tsx b/client/src/pages/hello.tsx
new file mode 100644
index 00000000..696d15df
--- /dev/null
+++ b/client/src/pages/hello.tsx
@@ -0,0 +1,7 @@
+import React from "react";
+
+const Hello = () => {
+ return