diff --git a/Products.java b/Products.java
index befa15dd086b312e95a8efea9fe0256ec00f3d69..c98d65387ec5c6e889a5a48fb88ecd38e331b72f 100644
--- a/Products.java
+++ b/Products.java
@@ -380,6 +380,16 @@ public class Products { /* a good class, but not as good as cse391 */
 	);
     }
 
+    public Product siyeeProduct() {
+	return new Product(
+		"Tulips",
+		"Some pretty flowers to make you happier!",
+		"tulips.jpg",
+		"Pink, yellow, purple, and orange tulip flowers in a garden.",
+		49.99
+	);
+    }
+
     public Product lq22Product() {
         return new Product(
                 "Large Fries",
diff --git a/Staff.java b/Staff.java
index 5e3ac227b80bfaa6bdcf9384e901fc00d51760c4..cc012bb6c01f69a090ec5f9446a58054b0d00eed 100644
--- a/Staff.java
+++ b/Staff.java
@@ -397,6 +397,16 @@ public class Staff {
 	);
     }
 
+    public Employee siyee() {
+    	return new Employee(
+		"Sierra",
+		"Student",
+		"I love plushies",
+		"Bear.jpg",
+		"Brown bear with hearts"
+    	);
+    }
+
     public Employee lq22() {
         return new Employee(
                 "Audrey",
diff --git a/images/products/tulips.jpg b/images/products/tulips.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..0d668f2e59a5c5f73bbc5a205d9e522972d7fb78
Binary files /dev/null and b/images/products/tulips.jpg differ
diff --git a/images/staff/Bear.jpg b/images/staff/Bear.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..5d0f405c1bff5a0aff5f252aa10a34755f5689ab
Binary files /dev/null and b/images/staff/Bear.jpg differ