Skip to content
Snippets Groups Projects
Commit 8d64b026 authored by Sam Zappa's avatar Sam Zappa
Browse files

Merge remote-tracking branch 'origin' into spzappa_staff_page

parents f7de4032 93506a76
No related branches found
No related tags found
1 merge request!89Spzappa staff page
Pipeline #576677 failed
Showing
with 151 additions and 1 deletion
/* check out these products! */
public class Products { /* a good class, but not as good as cse391 */
public Product yverma23sProduct() {
return new Product(
"Lebron 2's",
"Nike basketball shoes",
"Lebron2.png",
"Image of black and white nikes",
105.97
);
}
public Product joshjyinProduct() {
return new Product(
"Dub Hub",
"Craigslist for UW students",
"dubhub.jpg",
"Image of the best college campus",
99999999999.99
);
}
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",
......@@ -9,6 +37,15 @@ public class Products { /* a good class, but not as good as cse391 */
99999.99
);
}
public Product ahmincsProduct() {
return new Product(
"moorb",
"broom but better because broom",
"broom.PNG",
"image of legendary broom that might also be my profile",
0.92
);
}
public Product rairai77sProudct() {
return new Product(
"Cheeto Dust",
......@@ -419,7 +456,45 @@ public class Products { /* a good class, but not as good as cse391 */
"greatest water fountain of all time",
"waterfountain.png",
"Water fountain w/ water bottle filler",
1312.99
1312.99
)
}
public Product cvanleerProduct() {
return new Product(
"Milky Way",
"Contains chocolate, caramel, nougat and you",
"galaxy.jpg",
"A yellowish galaxy in space",
27000.00
);
}
public Product kevyin30Product() {
return new Product(
"iPhone 30 Pro Max",
"another new phone with nothing new",
"iphone15promax.jpg",
"iPhone 15 Pro Max",
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
);
}
public Product drose4Product() {
return new Product(
"Trader Joes Chicken Fried Rice",
"The best frozen fried rice on earth",
"friedrice.jpg",
"Image of trader joes chicken fried rice package",
3.99
);
}
}
public class Staff {
public Employee yverma23() {
return new Employee(
"Yash Verma",
"Baller",
"Sleep deprived",
"LebronJamesMeme.jpg",
"Lebron Meme"
);
}
public Employee joshjyin() {
return new Employee(
"Joshua Yin",
"Student",
"sleep deprived",
"this_is_fine.png",
"A typical day in my life"
);
}
public Employee kevluoyr() {
return new Employee(
"Kevin Luo",
"Supreme Leader",
"hyped",
"energy.jpg",
"me"
);
}
public Employee evanlou() {
return new Employee(
......@@ -18,6 +45,15 @@ public class Staff {
"A snorlax sitting"
);
}
public Employee ahminc() {
return new Employee(
"Ahmin Chang",
"Professional Broom Inspector",
"roasting",
"broom.PNG",
"a beautiful broom in all it's glory"
);
}
public Employee lwang42() {
return new Employee(
"Lawrence Wang",
......@@ -453,4 +489,43 @@ public class Staff {
"stick man"
);
}
public Employee cvanleer() {
return new Employee(
"Cole",
"Security Officer",
"Likes to eat everything",
"kirby_sword.png",
"Kirby with a sword"
);
}
public Employee kevyin30() {
return new Employee(
"Kevin",
"Student",
"I am a person",
"kevyin30.jpg",
"neutral emoji"
);
}
public Employee nvhoang() {
return new Employee(
"Noah",
"Student",
"Twice Enjoyer",
"lebron_james.jpeg",
"international student lebron james from tiktok"
);
}
public Employee drose4() {
return new Employee(
"Dylan",
"Student",
"Semi pro Uno player",
"dog.jpg",
"Picture of a dog"
);
}
}
images/products/Lebron2.png

129 KiB

images/products/blindr.jpg

24.4 KiB

images/products/broom.PNG

246 KiB

images/products/dubhub.jpg

222 KiB

images/products/friedrice.jpg

14 KiB

images/products/galaxy.jpg

106 KiB

images/products/iphone15promax.jpg

202 KiB

images/products/superlight.jpg

310 KiB

images/staff/LebronJamesMeme.jpg

5.69 KiB

images/staff/broom.PNG

246 KiB

images/staff/dog.jpg

217 KiB

images/staff/energy.jpg

152 KiB

images/staff/kevyin30.jpg

148 KiB

images/staff/kirby_sword.png

170 KiB

images/staff/lebron_james.jpeg

56.6 KiB

images/staff/this_is_fine.png

1.29 MiB

0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment