diff --git a/Products.java b/Products.java index 9451b1d80cfc699f7136552075471a2a6f28d9e9..27288cc9fcb576ed66dd239fcd01d90e74554f93 100644 --- a/Products.java +++ b/Products.java @@ -432,4 +432,14 @@ public class Products { /* a good class, but not as good as cse391 */ 1999 ); } + + 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 4aca573de8db10e660b9c4a02aa00b1e326d9397..4452a31cd61d0ad536fe4c925d6e44eb0a6cc6b9 100644 --- a/Staff.java +++ b/Staff.java @@ -463,4 +463,14 @@ public class Staff { "neutral emoji" ); } + + public Employee nvhoang() { + return new Employee( + "Noah", + "Student", + "Twice Enjoyer", + "lebron_james.jpeg", + "international student lebron james from tiktok" + ); + } } diff --git a/images/products/superlight.jpg b/images/products/superlight.jpg new file mode 100644 index 0000000000000000000000000000000000000000..17f8c0a7d054f2ada6ef01b75a1a8c55902429e7 Binary files /dev/null and b/images/products/superlight.jpg differ 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