diff --git a/Products.java b/Products.java
index 833c9806c1882fcdc7677a5b3188881be8361270..50e3d75fbed6f31a3581f135ef41e48b97e8ac97 100644
--- a/Products.java
+++ b/Products.java
@@ -180,6 +180,17 @@ public class Products { /* a good class, but not as good as cse391 */
 	
     }
 
+    public Product ikshitasProduct(){
+        return new Product(
+                "Ice Cream",
+                "Sweet treat!",
+                "icecream.jpg",
+                "ice cream",
+                10.0
+        );
+
+    }
+
     public Product skuttyProduct() {
 	return new Product(
 	    "Rake",
diff --git a/Staff.java b/Staff.java
index bd69fe43ce4e5aa85c2600f775dc66a2038da171..4bb08b24f82db7cd2e9ae0b61858247e3bf7c302 100644
--- a/Staff.java
+++ b/Staff.java
@@ -37,6 +37,16 @@ public class Staff {
 	  );
     }
 
+     public Employee ikshitas(){
+        return new Employee(
+          "Ikshita",
+          "Student",
+          "Tired",
+          "sunset.png",
+          "sunset"
+          );
+    }
+
     public Employee faangPup() {
         return new Employee(
           "Steve",
diff --git a/images/products/icecream.png b/images/products/icecream.png
new file mode 100644
index 0000000000000000000000000000000000000000..551230175b7995a3ab6a504554996966608f7338
Binary files /dev/null and b/images/products/icecream.png differ
diff --git a/images/staff/sunset.png b/images/staff/sunset.png
new file mode 100644
index 0000000000000000000000000000000000000000..6458aa080cb9558db9ad9ea463c00e2d5fed7848
Binary files /dev/null and b/images/staff/sunset.png differ