diff --git a/Products.java b/Products.java
index 9b199058950f2af9963acb23f50dd945094b9493..a58eebd5d8d518e71e784a69fa431a76cf14c972 100644
--- a/Products.java
+++ b/Products.java
@@ -1,5 +1,15 @@
 /* check out these products! */
-public class Products { /* a good class, but not as good as cse391 */
+public class Products { /* a good class, but not as good as cse391 */ 
+
+    public Product kevinh33Product() {
+	return new Product(
+	    "Duolingo owl",
+	    "He's super angry",
+	    "duo_angry.jpg",
+	    "His anger levels rising",
+	    150.00
+	);
+    }
     public Product evanlousProduct() {
     	return new Product(
 	    "Dorito Piece",
diff --git a/Staff.java b/Staff.java
index 46ed28f2d9eca685bbc6b7f09a36d0e884e457d6..725cf768ea13a83933806504a249e32568daa8c5 100644
--- a/Staff.java
+++ b/Staff.java
@@ -1,5 +1,14 @@
 public class Staff {
 
+    public Employee kevinh33() {
+	return new Employee(
+	    "Kevin Hernandez",
+	    "Student",
+	    "Loves pets",
+	    "silly_dino.png",
+	    "My silly cat"
+	);
+    }
     public Employee evanlou() {
     	return new Employee(
 	    "Evan Lou",
diff --git a/images/products/duo_angry.jpg b/images/products/duo_angry.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..98eab16c492ab552e463650b992713b7da6224e3
Binary files /dev/null and b/images/products/duo_angry.jpg differ
diff --git a/images/staff/silly_dino.png b/images/staff/silly_dino.png
new file mode 100644
index 0000000000000000000000000000000000000000..ab4e416b76d7c1f2a490fa64149b88481a2b526d
Binary files /dev/null and b/images/staff/silly_dino.png differ