diff --git a/.nfs0000000002e4ae7d00006849 b/.nfs0000000002e4ae7d00006849
new file mode 100644
index 0000000000000000000000000000000000000000..89db5d3926f6edcc02cc99c9429c3f89aa226f07
Binary files /dev/null and b/.nfs0000000002e4ae7d00006849 differ
diff --git a/Products.java b/Products.java
index d27ac657efadcccc38087a70f929e77b35d40ec8..14f91cc8b9a1166ed74023d620937bc614db0038 100644
--- a/Products.java
+++ b/Products.java
@@ -71,6 +71,16 @@ public class Products { /* a good class, but not as good as cse391 */
         );
     }
 
+    public Product akshitasProduct() {
+    	return new Product(
+	    "Lake",
+	    "Pretty lake by the mountains",
+	    "Lake.jpg",
+	    "Image of a snowy lake with moutains in the background",
+	    5.99	    
+	);
+    }
+
     public Product kevluoyrsProduct() {
         return new Product(
             "Blindr",
diff --git a/Staff.java b/Staff.java
index db0a7e7d4b9d5e066f4389100f1ee5f7e6092572..975f451390491e1c5168e08344a23af181c64413 100644
--- a/Staff.java
+++ b/Staff.java
@@ -213,7 +213,16 @@ public class Staff {
         "Alpaca with dandelion hair"
       );
     }
-
+    
+    public Employee akshiam() { 
+      return new Employee(
+	"Akshita",
+	"Student",
+	"Learning",
+	"MountainSunset.jpg",
+	"Husky Winter Sports members watching the sunset on a mountain"
+      );
+    }
     public Employee pbui27() {
       return new Employee(
         "Peter",
diff --git a/images/products/Lake.jpg b/images/products/Lake.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..2227fcf5daa56633f2cdbb68168d99ec06ad3468
Binary files /dev/null and b/images/products/Lake.jpg differ
diff --git a/images/staff/MountainSunset.jpg b/images/staff/MountainSunset.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..764b8cf3831f7c79c7c4c8cee087bca9e8559f6c
Binary files /dev/null and b/images/staff/MountainSunset.jpg differ