diff --git a/Products.java b/Products.java
index aaf7588745105714f182709ee5c31cd1ea5fb26d..b3f6a9ba49cf6e6d2095be724b49d915f96fed44 100644
--- a/Products.java
+++ b/Products.java
@@ -1,5 +1,6 @@
 /* check out these products! */
 public class Products { /* a good class, but not as good as cse391 */
+
     public Product rairai77sProudct() {
         return new Product(
             "Cheeto Dust",
@@ -9,6 +10,16 @@ public class Products { /* a good class, but not as good as cse391 */
             42.024
         );
     }
+    public Product kevinsProduct(){
+	return new Product(
+	    "Basketball",
+	    "Bouncy bouncy orange ball",
+	    "basketball.jpg",
+	    "Picture of a basketball",
+	    42.0
+	);
+    }
+
     public Product joshsProduct() {
         return new Product(
             "Dirt",
@@ -107,5 +118,23 @@ public class Products { /* a good class, but not as good as cse391 */
                 "image of proteen powder",
                 9.99
         );
+
+    public Product yixuan19Product(){
+    	return new Product (
+		"Goomba",
+		"The No.1 VTB from Hololive",
+		"Avatar.png",
+		"Picture of Gawr Gura",
+		114514.0
+   	);
+    }
+    public Product swangsamProduct(){
+   	return new Product(
+		"Pullup Bar",
+		"It builds back",
+		"pullup.png",
+		"pullup bar image",
+		1.2
+	);
     }
 }
diff --git a/Staff.java b/Staff.java
index 67bb57a192c12646186c6e8a03ef2ebeb74e8fa2..9a5fff8877e9d4e4fef92553f0d0bb4b654c8796 100644
--- a/Staff.java
+++ b/Staff.java
@@ -8,6 +8,16 @@ public class Staff {
             "A snorlax sitting"
         );
     } 
+    public Employee xckevin(){
+      return new Employee(
+        "Kevin",
+        "Bro",
+        "chill dude",
+        "kevin.jpg",
+        "Photo"
+      );
+    }
+
     public Employee faangPup() {
         return new Employee(
           "Steve",
@@ -128,4 +138,22 @@ public class Staff {
 	);
     }
 
+    public Employee yixuan19() {
+    	return new Employee (
+		"Yixuan",
+		"Student",
+		"Slackin",
+		"Goomba.jpg",
+		"Shaaaaaaaaark"
+	);   
+    }
+    public Employee swangsam(){
+    	return new Employee(
+		"Samuel",
+		"Student",
+		"runs",
+		"sephiroth.png",
+		"sephiroth"
+	);
+    }
 }	
diff --git a/images/products/Avatar.png b/images/products/Avatar.png
new file mode 100644
index 0000000000000000000000000000000000000000..cd637eacdafad98bc13f1eb6d0c5291165116791
Binary files /dev/null and b/images/products/Avatar.png differ
diff --git a/images/products/basketball.jpg b/images/products/basketball.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..17ea901ee0e49cb8308c300579eeddb4bd76b915
Binary files /dev/null and b/images/products/basketball.jpg differ
diff --git a/images/products/pullup.png b/images/products/pullup.png
new file mode 100644
index 0000000000000000000000000000000000000000..ef48b03aba8d10294dccf89f6c62025843358bb8
Binary files /dev/null and b/images/products/pullup.png differ
diff --git a/images/staff/Goomba.jpg b/images/staff/Goomba.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..6a937f768fb9056f86015a13896058bdc4fd31cb
Binary files /dev/null and b/images/staff/Goomba.jpg differ
diff --git a/images/staff/kevin.jpg b/images/staff/kevin.jpg
new file mode 100755
index 0000000000000000000000000000000000000000..4efe5aa77783558a609ad2db33e17db2a916fc1d
Binary files /dev/null and b/images/staff/kevin.jpg differ
diff --git a/images/staff/sephiroth.png b/images/staff/sephiroth.png
new file mode 100644
index 0000000000000000000000000000000000000000..fcdf091b48968f217f1248e9ea168deff6801f11
Binary files /dev/null and b/images/staff/sephiroth.png differ