Skip to content
Snippets Groups Projects
Commit 97bfc717 authored by Isaac Wu's avatar Isaac Wu
Browse files

Merge branch 'main' into isaacwu_staff_page

parents 454746b4 76822c00
No related branches found
No related tags found
1 merge request!15Added Isaac
Pipeline #576061 failed
/* check out these products! */
public class Products { /* a good class, but not as good as cse391 */
public Product rairai77sProudct() {
return new Product(
"Cheeto Dust",
"Just the good part (spicy)",
"cheetos.png",
"News about cheeto dust taking over",
42.024
);
}
public Product joshsProduct() {
return new Product(
"Dirt",
......@@ -68,5 +77,14 @@ public class Products { /* a good class, but not as good as cse391 */
"rolling grass fields, blue skies, white clouds",
100000
);
public Product aamangusProduct() {
return new Product(
"Broody Chicken",
"It screams!",
"Discord Chicken.PNG",
"image of a broody chicken",
1.01
);
}
}
public class Staff {
public Employee rairai77() {
return new Employee(
"Raahil Jain",
"Student",
"Sleepy",
"snorlax.png",
"A snorlax sitting"
);
}
public Employee faangPup() {
return new Employee(
"Steve",
......@@ -20,6 +28,16 @@ public class Staff {
);
}
public Employee mxw() {
return new Employee(
"Matt",
"candy thrower",
"tired",
"matt.png",
"matt smiling in front of a polka-dotted wall."
);
}
public Employee antonio6() {
return new Employee(
"Antonio",
......@@ -77,6 +95,14 @@ public class Staff {
"Can I go to sleep now?",
"icon.jpeg",
"angrily studying"
public Employee aamangus() {
return new Employee(
"Anthony",
"Student",
"studies",
"Discord Chicken.PNG",
"funny chicken"
);
}
}
images/products/cheeto.png

313 KiB

images/staff/Discord Chicken.PNG

448 KiB

images/staff/matt.png

1.48 MiB

images/staff/snorlax.png

107 KiB

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