diff --git a/Products.java b/Products.java index 27288cc9fcb576ed66dd239fcd01d90e74554f93..beef4671956f7dc203e489a22bf3611f8af42008 100644 --- a/Products.java +++ b/Products.java @@ -1,5 +1,14 @@ /* check out these products! */ public class Products { /* a good class, but not as good as cse391 */ + public Product kevluoyrsProduct() { + return new Product( + "Blindr", + "ML AI Blockchain Crypto eco Window Blinds", + "blindr.jpg", + "Snazzy blindr portrait", + 99999999999.99 + ); + } public Product evanlousProduct() { return new Product( "Dorito Piece", diff --git a/Staff.java b/Staff.java index 4452a31cd61d0ad536fe4c925d6e44eb0a6cc6b9..1c53b7efc158ecd7ea8a5e15eac2cc18090a8cc1 100644 --- a/Staff.java +++ b/Staff.java @@ -1,4 +1,13 @@ public class Staff { + public Employee kevluoyr() { + return new Employee( + "Kevin Luo", + "Supreme Leader", + "hyped", + "energy.jpg", + "me" + ); + } public Employee evanlou() { return new Employee( diff --git a/images/products/blindr.jpg b/images/products/blindr.jpg new file mode 100644 index 0000000000000000000000000000000000000000..08a5d35206ad846b8cafa45cc8a41c7f80a2a890 Binary files /dev/null and b/images/products/blindr.jpg differ diff --git a/images/staff/energy.jpg b/images/staff/energy.jpg new file mode 100644 index 0000000000000000000000000000000000000000..132a78bda937e42cd980f6b009f140c9ee95f3c2 Binary files /dev/null and b/images/staff/energy.jpg differ