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

Merge branch 'main' into site_bkg

parents 06eac4ec 3429f5ab
No related branches found
No related tags found
1 merge request!39Website background
Pipeline #576196 passed
Showing with 183 additions and 0 deletions
......@@ -10,6 +10,15 @@ public class Products { /* a good class, but not as good as cse391 */
42.024
);
}
public Product mehulcsProduct() {
return new Product(
"Giant Gummy Bear",
"Big fatty tasty gummy bear",
"gummybear.jpg",
"Picture of a beautiful gummy bear",
10000.10
);
}
public Product kevinsProduct(){
return new Product(
"Basketball",
......@@ -59,6 +68,16 @@ public class Products { /* a good class, but not as good as cse391 */
4.29
);
}
public Product evansProduct() {
return new Product(
"Dented Trombone",
"Super wrecked trombone but still plays wel",
"trom.png",
"very higih quality tromBONE",
99.10
);
}
public Product petersProduct() {
return new Product(
......@@ -110,6 +129,16 @@ public class Products { /* a good class, but not as good as cse391 */
);
}
public Product noahhucksProduct() {
return new Product(
"CSE2 Building (Real)",
"no refunds",
"Gates-Center_0001.jpg",
"UW Gates Center Building",
20.00
);
}
public Product tanjalsProduct() {
return new Product(
"Creatine",
......@@ -159,4 +188,66 @@ public class Products { /* a good class, but not as good as cse391 */
1.2
);
}
public Product ank05Product(){
return new Product(
"Water",
"Yum",
"water.jpg",
"bottled water",
100
);
}
public Product akhils22Product(){
return new Product(
"Avocado",
"Specially made in a Pineapple Under the Sea",
"avocado.jpg",
"Mmm...Tasty Avocado!",
22.22
);
}
public Product ikshitasProduct(){
return new Product(
"Ice Cream",
"Sweet treat!",
"icecream.jpg",
"ice cream",
10.0
);
}
public Product skuttyProduct() {
return new Product(
"Rake",
"A rake to gather leaves",
"rake.jpg",
"image of a rake",
5959.59
);
}
public Product erinsongProduct() {
return new Product(
"Ramen",
"Perfect meal on a cold day",
"ramen.jpg",
"Bowl of soup with noodles and sliced boiled egg",
15.50
);
}
public Product lq22Product() {
return new Product(
"Large Fries",
"Delicious McDonald's Fries!",
"largeFries.jpg",
"A pack of large size McDonald's Fries",
4.99
);
}
}
......@@ -7,6 +7,15 @@ public class Staff {
"snorlax.png",
"A snorlax sitting"
);
}
public Employee mehulc() {
return new Employee(
"Mehul Chaudhari",
"Student",
"Eating",
"snoopy.jpg",
"just snoopy."
);
}
public Employee xckevin(){
return new Employee(
......@@ -18,6 +27,26 @@ public class Staff {
);
}
public Employee ank05(){
return new Employee(
"Ankhita",
"Student",
"Studying",
"ankhita.png",
"smiley"
);
}
public Employee ikshitas(){
return new Employee(
"Ikshita",
"Student",
"Tired",
"sunset.png",
"sunset"
);
}
public Employee faangPup() {
return new Employee(
"Steve",
......@@ -78,6 +107,15 @@ public class Staff {
);
}
public Employee evanmao() {
return new Employee(
"Evan",
"Living well",
"Things that pay well",
"handsomeMe.jpg",
"I am very disappointed in this photo"
);
}
public Employee agummadi() {
return new Employee(
"Arya",
......@@ -128,6 +166,16 @@ public class Staff {
);
}
public Employee noahhuck() {
return new Employee(
"Noah",
"CEO",
"does nothing",
"noahh.png",
"A color inverted image of the employee"
);
}
public Employee tshukl() {
return new Employee(
"Tanjal",
......@@ -169,6 +217,29 @@ public class Staff {
"Shaaaaaaaaark"
);
}
public Employee skutty() {
return new Employee(
"Sriram",
"Student",
"sleeping",
"cake.jpg",
"cake"
);
}
public Employee akhils22(){
return new Employee(
"Akhil",
"Professional Wii Tennis Player",
"I love water",
"goal.jpg",
"lewangoalski with a legendary kick"
);
}
public Employee swangsam(){
return new Employee(
"Samuel",
......@@ -178,4 +249,25 @@ public class Staff {
"sephiroth"
);
}
public Employee erinsong() {
return new Employee(
"Erin",
"Student",
"Sleeps",
"sleep.jpg",
"Brown-haired girl slumped over a desk"
);
}
public Employee lq22() {
return new Employee(
"Audrey",
"Student",
"Want to sleep",
"sleeping.jpg",
"A grey cat tring to sleep on the bed"
);
}
}
images/products/Gates-Center_0001.jpg

497 KiB

images/products/avocado.jpg

128 KiB

images/products/gummybear.jpg

14.5 KiB

images/products/icecream.png

874 KiB

images/products/largeFries.jpg

479 KiB

images/products/rake.jpg

111 KiB

images/products/ramen.jpg

110 KiB

images/products/trom.png

152 KiB

images/staff/cake.jpg

103 KiB

images/staff/goal.jpg

913 KiB

images/staff/handsomeMe.jpg

142 KiB

images/staff/noahh.png

171 KiB

images/staff/sleep.jpg

79.9 KiB

images/staff/sleeping.jpg

13.1 KiB

images/staff/snoopy.jpg

156 KiB

images/staff/sunset.png

2.25 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