diff --git a/Products.java b/Products.java
index 1306bac91a60f0eee0247263cbd701c4279bc788..237d2933099af071f2b048abd3c68cc01edc675d 100644
--- a/Products.java
+++ b/Products.java
@@ -120,6 +120,26 @@ public class Products { /* a good class, but not as good as cse391 */
 	);
     }
 
+    public Product keshavsProduct() {
+	return new Product(
+		"Dirt",
+		"Great for plants!",
+		"dirt.jpg",
+		"image of the product",
+		4.67
+		);
+	}
+
+    public Product dhvbnlProduct() {
+        return new Product (
+                "proteen",
+                "gets you jacked",
+                "proteen.jpg",
+                "image of proteen powder",
+                9.99
+        );
+    }
+
     public Product yixuan19Product(){
     	return new Product (
 		"Goomba",
@@ -129,6 +149,7 @@ public class Products { /* a good class, but not as good as cse391 */
 		114514.0
    	);
     }
+
     public Product swangsamProduct(){
    	return new Product(
 		"Pullup Bar",
diff --git a/Staff.java b/Staff.java
index 40017c7289bf22177b1912c2df53aa181ae1080a..b0257a93520af2fc8ca93e0501485aebc96b989c 100644
--- a/Staff.java
+++ b/Staff.java
@@ -138,6 +138,28 @@ public class Staff {
 	);
     }
 
+    public Employee kesach() {
+	return new Employee(
+		"Keshav",
+		"Procrastinator",
+		"I'm hungry",
+		"keshav.jpg",
+		"a swig of chai"
+    	);
+    }
+
+
+    public Employee dhvbnl() {
+    	return new Employee (
+		"Dhruv",
+		"tech student",
+		"breaking things that work, making things that break",
+		"dhvbnl.jpg",
+		"pillow representing dhruv"
+	);
+    }
+
+
     public Employee yixuan19() {
     	return new Employee (
 		"Yixuan",
diff --git a/images/products/dirt.jpg b/images/products/dirt.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..32f7b67be4b86e360c5308e8e6281ab2a5cfd0c4
Binary files /dev/null and b/images/products/dirt.jpg differ
diff --git a/images/products/proteen.jpg b/images/products/proteen.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..ed8b540897e01d590bbf01cf36ec5bf2ec50f0b2
Binary files /dev/null and b/images/products/proteen.jpg differ
diff --git a/images/staff/dhvbnl.jpg b/images/staff/dhvbnl.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..6992a794b2be87cb7a33e8712ffc79e763674f40
Binary files /dev/null and b/images/staff/dhvbnl.jpg differ
diff --git a/images/staff/keshav.jpg b/images/staff/keshav.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..d352cde02251160e7a43f17d3939205a2885e5d3
Binary files /dev/null and b/images/staff/keshav.jpg differ