-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathStaticData.js
More file actions
75 lines (72 loc) · 4.08 KB
/
Copy pathStaticData.js
File metadata and controls
75 lines (72 loc) · 4.08 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
const Pizzas = [
{
id: 3231,
name: "Chicken Pizza",
varients: ["small", "medium", "large"],
prices: { small: 200, medium: 350, large: 400 },
category: "nonveg",
image:
"https://media.istockphoto.com/photos/butter-chicken-pizza-picture-id1043604390?b=1&k=20&m=1043604390&s=612x612&w=0&h=XuBOH3xTEm2JlWzyPj6KdjeKcDwgO3dWpBP70crM1L0=",
description: "lorem iplus is the this is the random text and you might want to add the detils of the pizza here. Like you can add the ingrediants or something about the pizza that might attract the clients with your pizza. Chicken pizza with cheese doping over",
},
{
id: 432,
name: "Veg Pizza",
varients: ["small", "medium", "large"],
prices: { small: 200, medium: 350, large: 400 },
category: "veg",
image:
"https://media.istockphoto.com/photos/small-pizza-with-chicken-spinach-and-double-cheese-picture-id180817243?b=1&k=20&m=180817243&s=612x612&w=0&h=6bUah__3XPbM33qp4lWttirC93sr8WoDiCgBl3nWICQ=",
description: "lorem iplus is the this is the random text and you might want to add the detils of the pizza here. Like you can add the ingrediants or something about the pizza that might attract the clients with your pizza. Chicken pizza with cheese doping over",
},
{
id: 3545,
name: "Cheese Pizza",
varients: ["small", "medium", "large"],
prices: { small: 200, medium: 350, large: 400 },
category: "veg",
image:
"https://images.pexels.com/photos/5017806/pexels-photo-5017806.jpeg?auto=compress&cs=tinysrgb&w=600",
description: "lorem iplus is the this is the random text and you might want to add the detils of the pizza here. Like you can add the ingrediants or something about the pizza that might attract the clients with your pizza. Chicken pizza with cheese doping over",
},
{
id: 465,
name: "Cheesy Pizza",
varients: ["small", "medium", "large"],
prices: { small: 200, medium: 350, large: 400 },
category: "veg",
image:
"https://images.pexels.com/photos/5640041/pexels-photo-5640041.jpeg?auto=compress&cs=tinysrgb&w=600",
description: "lorem iplus is the this is the random text and you might want to add the detils of the pizza here. Like you can add the ingrediants or something about the pizza that might attract the clients with your pizza. Chicken pizza with cheese doping over",
},
{
id: 3235,
name: "Mutton Pizza",
varients: ["small", "medium", "large"],
prices: { small: 200, medium: 350, large: 400 },
category: "nonveg",
image:
"https://images.pexels.com/photos/5640043/pexels-photo-5640043.jpeg?auto=compress&cs=tinysrgb&w=600",
description: "lorem iplus is the this is the random text and you might want to add the detils of the pizza here. Like you can add the ingrediants or something about the pizza that might attract the clients with your pizza. Button pizza with is made up of tasty goat meats",
},{
id: 6565,
name: "Raw Pizza",
varients: ["small", "medium", "large"],
prices: { small: 200, medium: 350, large: 400 },
category: "nonveg",
image:
"https://images.pexels.com/photos/4288047/pexels-photo-4288047.jpeg?auto=compress&cs=tinysrgb&w=600",
description: "lorem iplus is the this is the random text and you might want to add the detils of the pizza here. Like you can add the ingrediants or something about the pizza that might attract the clients with your pizza. Button pizza with is made up of tasty goat meats",
},
{
id: 6767,
name: "Tomato Pizza",
varients: ["small", "medium", "large"],
prices: { small: 200, medium: 350, large: 400 },
category: "veg",
image:
"https://media.istockphoto.com/photos/grilled-chicken-and-roasted-pepper-pizza-picture-id185280728?b=1&k=20&m=185280728&s=612x612&w=0&h=Or0TZUwRqBVM6syWJYaWoXV25i1Q-zAS3B2ax4HF0j4=",
description: "lorem iplus is the this is the random text and you might want to add the detils of the pizza here. Like you can add the ingrediants or something about the pizza that might attract the clients with your pizza. Button pizza with is made up of tasty goat meats",
}
];
export default Pizzas;