diff --git a/Products.java b/Products.java
index 9e3503533920ed63b8e880da758e86b25d98c2a3..8cd76feecf57578ced684946ba8f0e81469677a4 100644
--- a/Products.java
+++ b/Products.java
@@ -806,4 +806,14 @@ public class Products { /* a good class, but not as good as cse391 */
 		1000.0
 	);
     }
+
+	public Product acuraIntegra() {
+        return new Product (
+            "Acura Integra",
+            "Acura Integra",
+            "acura.jpg",
+            "Acura Integra",
+			52400
+        );
+    }
 }
diff --git a/Staff.java b/Staff.java
index 8f9762388f86088e57cb32e85383e4dd0ee6c5c6..ee7479fee4fe9815bbe754980869e645444df93f 100644
--- a/Staff.java
+++ b/Staff.java
@@ -826,5 +826,15 @@ public class Staff {
                 "celsius picture"
         );    
     }
+
+    public Employee kristong() {
+        return new Employee (
+            "Kris",
+            "Student",
+            "Hello",
+            "boy.jp",
+            "🙏"
+        )
+    }
 }	
 
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/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