Skip to content
Snippets Groups Projects
Commit 8b65ae47 authored by Kshitij Rao's avatar Kshitij Rao
Browse files

Merge remote-tracking branch 'origin/main' into kgrao_staff_page

parents fdd8267d 76822c00
No related branches found
No related tags found
1 merge request!11Added my product and staff page to FAANG.
/* 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",
......@@ -69,4 +78,14 @@ public class Products { /* a good class, but not as good as cse391 */
5.95
);
}
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",
......@@ -79,4 +97,14 @@ public class Staff {
"A dog!"
);
}
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