diff --git a/Products.java b/Products.java
index ae50748ecfe7f5aff6079c90a51250dd13bcc551..ffc1442f6f2747b2cd1d46036a2a6f66313c4651 100644
--- a/Products.java
+++ b/Products.java
@@ -422,4 +422,14 @@ public class Products { /* a good class, but not as good as cse391 */
 		27000.00
 	);
     }
+
+	public Product nvhoangProduct() {
+	return new Product(
+		"Logitech G PRO X SUPERLIGHT 2",
+		"Logitech wireless gaming mouse in magenta",
+		"superlight.jpg",
+		"Side view of the logitech gaming mouse",
+		159.99
+	);
+    }
 }
diff --git a/Staff.java b/Staff.java
index 42fc934f576cb63a426ae13c4075806696d5175c..89bc144a963da8accbe70889f4af2249697dc891 100644
--- a/Staff.java
+++ b/Staff.java
@@ -453,4 +453,14 @@ public class Staff {
 		"Kirby with a sword"
 	 );
     }
+
+    public Employee nvhoang() {
+        return new Employee(
+            "Noah",
+            "Student",
+            "Twice Enjoyer",
+            "lebron_james.jpeg",
+            "international student lebron james from tiktok"
+        );
+    }
 }	
diff --git a/images/staff/lebron_james.jpeg b/images/staff/lebron_james.jpeg
new file mode 100644
index 0000000000000000000000000000000000000000..2633b0d1dbafaaa63f94029fe094541bc2237b34
Binary files /dev/null and b/images/staff/lebron_james.jpeg differ