diff --git a/Products.java b/Products.java
index 137fcf58ff84ec7b0294725c41a154e784550393..e6eb3e85db99c28be2fd803e1fafeb500113baad 100644
--- a/Products.java
+++ b/Products.java
@@ -1,5 +1,24 @@
 /* check out these products! */
 public class Products { /* a good class, but not as good as cse391 */
+    
+    public Product yverma23sProduct() {
+	return new Product(
+	    "Lebron 2's",
+	    "Nike basketball shoes",
+	    "Lebron2.png",
+	    "Image of black and white nikes",
+	    105.97
+	);
+    }	    
+    public Product joshjyinProduct() {
+        return new Product(
+            "Dub Hub",
+            "Craigslist for UW students",
+            "dubhub.jpg",
+            "Image of the best college campus",
+            99999999999.99
+        );
+    }
     public Product kevluoyrsProduct() {
         return new Product(
             "Blindr",
diff --git a/Staff.java b/Staff.java
index 89592a83d6c26ed8c9ae858e5fbda4e96f41061d..a258093a5ef5c0c70455a7a179a55a2f1b9af880 100644
--- a/Staff.java
+++ b/Staff.java
@@ -1,4 +1,22 @@
 public class Staff {
+   public Employee yverma23() {
+        return new Employee(
+            "Yash Verma",
+            "Baller",
+            "Sleep deprived",
+            "LebronJamesMeme.jpg",
+            "Lebron Meme"
+        );
+    }
+    public Employee joshjyin() {
+        return new Employee(
+            "Joshua Yin",
+            "Student",
+            "sleep deprived",
+            "this_is_fine.png",
+            "A typical day in my life"
+        );
+    }
     public Employee kevluoyr() {
       return new Employee(
           "Kevin Luo",
diff --git a/images/products/Lebron2.png b/images/products/Lebron2.png
new file mode 100644
index 0000000000000000000000000000000000000000..d627c4870e9567308e9a050a2f1d84437e7d240a
Binary files /dev/null and b/images/products/Lebron2.png differ
diff --git a/images/products/dubhub.jpg b/images/products/dubhub.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..320642efc2de6d4aeac198a0c3d55d433970c7b3
Binary files /dev/null and b/images/products/dubhub.jpg differ
diff --git a/images/staff/LebronJamesMeme.jpg b/images/staff/LebronJamesMeme.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..a2b274cebeb3d41a5130337d578ac1e27247e031
Binary files /dev/null and b/images/staff/LebronJamesMeme.jpg differ
diff --git a/images/staff/this_is_fine.png b/images/staff/this_is_fine.png
new file mode 100644
index 0000000000000000000000000000000000000000..9c63eea130b8a88c4be77a457237f1c31bd1d4e3
Binary files /dev/null and b/images/staff/this_is_fine.png differ