diff --git a/Products.java b/Products.java
index 86997d8190866d4306264607d07ae0475b212592..417f88736e357e30fc77d8d475632db6aed0277a 100644
--- a/Products.java
+++ b/Products.java
@@ -1,7 +1,28 @@
 /* check out these products! */
 public class Products { /* a good class, but not as good as cse391 */
+
+    public Product boschenProduct() {
+	return new Product(
+		"sleepCoke",
+		"It will help you a nice sleep",
+		"sleepCoke.jpg",
+		"really good, has sleepy coffine",
+		9.98	
+		);
+    }
+
     
 
+    public Product smayanProduct() {
+        return new Product(
+                "Dollar Bill",
+                "one dollar in cash",
+                "dollar_bill.jpg",
+                "Image of a one-dollar bill",
+                1.00
+                );
+    }
+
     public Product benoreProduct() {
 	    return new Product(
 			    "Taylor Swift - Folklore Vinyl",
@@ -12,6 +33,27 @@ public class Products { /* a good class, but not as good as cse391 */
 			    );
     }
 
+    public Product ekimji1Product() {
+	return new Product(
+		    "Gudetama",
+	    	"perfect",
+		    "gudetama.jpg",
+		    "Lazy egg",
+		    1000.0
+		    );
+
+    }
+
+       public Product bohanz04Product() {
+            return new Product(
+                            "CSE351 hw problem",
+                            "A confusing problem faced",
+                            "test2.jpg",
+                            "image of that problem",
+                            1.00
+                            );
+    }
+ 
     public Product kevinh33Product() {
 	    return new Product(
 			    "Duolingo owl",
@@ -787,4 +829,33 @@ public class Products { /* a good class, but not as good as cse391 */
         );
 	}
 
+    public Product pranavntProduct() {
+	return new Product(
+		"Celsius Essentials 1000 pack",
+		"1000 pack of celsius essentials. will keep you awake.",
+		"celsius-picture.png",
+		"Celsius Essentials",
+		1000.0
+	);
+    }
+
+	public Product acuraIntegra() {
+        return new Product (
+            "Acura Integra",
+            "Acura Integra",
+            "acura.jpg",
+            "Acura Integra",
+			52400
+		);
+	}
+	
+    public Product shangy24Product() {
+        return new Product(
+            "Windows 10 Pro",
+            "An operating system made by Microsoft",
+            "win10.jpg",
+            "Windows 10 Default Wallpaper",
+            199.99
+        );
+    }
 }
diff --git a/Staff.java b/Staff.java
index 6687fa81bc74a23622ed76d6ed67fc40ae1e2b3c..51ebc8d1c8408bd3a957059ac4cb957aa8b7ab37 100644
--- a/Staff.java
+++ b/Staff.java
@@ -1,4 +1,35 @@
 public class Staff {
+
+
+    public Employee smayan(){
+           return new Employee(
+                           "Smayan Nirantare",
+                           "CS Student",
+                           "I'm hungry",
+                           "travis_scott.jpg",
+                           "Travis Scott"
+                           );
+   }
+
+
+   public Employee boschen() {
+   	return new Employee(
+		"Boshan Chen",
+		"Sleeper",
+		"Sleep and stare blankly",
+		"White.jpg",
+		"umm.."
+	);
+   }
+   public Employee ekimji() {
+	   return new Employee(
+		"Esther",
+		"student",
+		"local point demon",
+		"gudetama.jpg",
+		"gudetama with balloon"
+	);
+   }
 	
    public Employee benore() {
 	   return new Employee("Ben",
@@ -8,6 +39,17 @@ public class Staff {
 			   "Picture of Ben Oreizy");
    }
 	
+
+   public Employee bohanz04() {
+        return new Employee(
+	    "Bryan Zhao",
+	    "Student",
+	    "abcdefg stuff",
+	    "test1.jpg",
+	    "hope to get internship"
+	);
+   }	   
+
    public Employee cuperido() {
        return new Employee(
            "Young You",
@@ -809,4 +851,34 @@ public class Staff {
    }
 }
 
+    public Employee pranavnt() {
+        return new Employee(
+                "Pranav",
+                "Student",
+                "i like celsius",
+                "celsius-picture.png",
+                "celsius picture"
+        );    
+    }
+
+    public Employee kristong() {
+        return new Employee (
+            "Kris",
+            "Student",
+            "Hello",
+            "boy.jp",
+            "🙏"
+        );
+    }
+
+    public Employee shangy24() {
+        return new Employee(
+            "Shangzhen Yang",
+            "Student",
+            "Hello, World!",
+            "your-name.jpg",
+            "Wallpaper of Movie Your Name"
+        );
+    }
+}	
 
diff --git a/images/products/acura.jpg b/images/products/acura.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..17502134e99794c51ee037b4d91b45fd2942bf85
Binary files /dev/null and b/images/products/acura.jpg differ
diff --git a/images/products/chocolate_ice_cream.jpg b/images/products/chocolate_ice_cream.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..a987e0df5e5481998694eacb2f9bc66f07ebf95f
Binary files /dev/null and b/images/products/chocolate_ice_cream.jpg differ
diff --git a/images/products/dollar_bill.jpg b/images/products/dollar_bill.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..9e5a9ec1f6e39cce8382ff6d59536ac016aa52e2
Binary files /dev/null and b/images/products/dollar_bill.jpg differ
diff --git a/images/products/gudetama.jpg b/images/products/gudetama.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..1bde2dc77c41a171a9b25223e52acd05fa844e38
Binary files /dev/null and b/images/products/gudetama.jpg differ
diff --git a/images/products/sleepCoke.jpg b/images/products/sleepCoke.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..d5d63588eaae1e81df9d51c6f3bcf63ce5ac7cbf
Binary files /dev/null and b/images/products/sleepCoke.jpg differ
diff --git a/images/products/test2.jpg b/images/products/test2.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..20cdab1ea00dea217026843230381259fa42fa79
Binary files /dev/null and b/images/products/test2.jpg differ
diff --git a/images/products/win10.jpg b/images/products/win10.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..6d0698b8fcc5b4530228013e56543508e803ea78
Binary files /dev/null and b/images/products/win10.jpg differ
diff --git a/images/staff/White.jpg b/images/staff/White.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..02311af9a72dfe8655879816d283bafbd0aa2dad
Binary files /dev/null and b/images/staff/White.jpg differ
diff --git a/images/staff/boy.jpg b/images/staff/boy.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..265268e2ee4615dc07007592a793338d956fc2d8
Binary files /dev/null and b/images/staff/boy.jpg differ
diff --git a/images/staff/celsius-picture.png b/images/staff/celsius-picture.png
new file mode 100644
index 0000000000000000000000000000000000000000..4d6c76600006cdeee743a913a91679dd23afe994
Binary files /dev/null and b/images/staff/celsius-picture.png differ
diff --git a/images/staff/test1.jpg b/images/staff/test1.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..20cdab1ea00dea217026843230381259fa42fa79
Binary files /dev/null and b/images/staff/test1.jpg differ
diff --git a/images/staff/tired_dog.jpg b/images/staff/tired_dog.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..9a62244a0a22839ad420567a19265a47ed649209
Binary files /dev/null and b/images/staff/tired_dog.jpg differ
diff --git a/images/staff/travis_scott.jpg b/images/staff/travis_scott.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..3bc0dd8bb92a95cd9646fc7e2d4f2dfde442e269
Binary files /dev/null and b/images/staff/travis_scott.jpg differ
diff --git a/images/staff/your-name.jpg b/images/staff/your-name.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..8b25e1e4c366a016229604c8f51936e6a49b00ee
Binary files /dev/null and b/images/staff/your-name.jpg differ
diff --git a/products.java b/products.java
deleted file mode 100644
index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..0000000000000000000000000000000000000000