diff --git a/Products.java b/Products.java
index 1a9c441f8e7da5deed04e609134494cd14adc538..826fd0034cbde34fffbf962c45b615aa15d8236c 100644
--- a/Products.java
+++ b/Products.java
@@ -661,6 +661,16 @@ public class Products { /* a good class, but not as good as cse391 */
         "Picture of Intel Processor",
         589.00
         );
+    } 
+
+    public Product sjeyteProduct() {
+	    return new Product(
+		"AMD Ryzen 7 7800X3D",
+                "Best gaming chip currently!",
+                "7800x3d.jpeg",
+                "Picture of the AMD processor.",
+                449.00
+	);
     }
 
 
diff --git a/Staff.java b/Staff.java
index 32c52c9841f01bf05b55f02227588faae93effb1..f52b0ba108f9ab312e2e9dd755655bd1c9b31915 100644
--- a/Staff.java
+++ b/Staff.java
@@ -693,6 +693,16 @@ public class Staff {
         );
     }
 
+    public Employee sjeyte() {
+	    return new Employee(
+		"Sulyman",
+		"Student",
+		"Academic comeback season!",
+		"lebron.jpeg",
+		"Picture of LeBron down 3-1 in the Finals."
+	);
+    }
+    
      public Employee ggsmadhu(){
     	    return new Employee(
 		"Madhumitha",
diff --git a/images/products/7800x3d.jpeg b/images/products/7800x3d.jpeg
new file mode 100644
index 0000000000000000000000000000000000000000..e50beb98abe1aa991cdb9f2f1f5ff1426679e89c
Binary files /dev/null and b/images/products/7800x3d.jpeg differ
diff --git a/images/staff/lebron.jpeg b/images/staff/lebron.jpeg
new file mode 100644
index 0000000000000000000000000000000000000000..1348c9e9cab1996599f5626f3ac35b95498ae9a4
Binary files /dev/null and b/images/staff/lebron.jpeg differ