diff --git a/Products.java b/Products.java
index f4b19d463c7ae44dc7d5f6ad85eb8839af6d0508..82850127ba9f89fbe130af0e9c90f7fefa3ff1f9 100644
--- a/Products.java
+++ b/Products.java
@@ -120,6 +120,17 @@ public class Products { /* a good class, but not as good as cse391 */
 		);
 	}
 
+    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",
diff --git a/Staff.java b/Staff.java
index 880f1cd274b381fd3fba51bd8f20226a6d84faec..570aa6427106100fec2ece8b8a832133f1f9aeae 100644
--- a/Staff.java
+++ b/Staff.java
@@ -128,6 +128,7 @@ public class Staff {
 	);
     }
 
+
     public Employee kesach() {
 	return new Employee(
 		"Keshav",
@@ -139,6 +140,17 @@ public class Staff {
     }
 
 
+    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/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