-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcards.js
114 lines (114 loc) · 1.86 KB
/
cards.js
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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
export default [
{
name: "applebees",
image: "./img/applebees.png",
},
{
name: "arbys",
image: "./img/arbys.png",
},
{
name: "aw-restaurants",
image: "./img/aw-restaurants.png",
},
{
name: "baskin-robbins",
image: "./img/baskin-robbins.png",
},
{
name: "burger-king",
image: "./img/burger-king.png",
},
{
name: "cheesecake-factory",
image: "./img/cheesecake-factory.png",
},
{
name: "chick-fil-a",
image: "./img/chick-fil-a.png",
},
{
name: "cinnabon",
image: "./img/cinnabon.png",
},
{
name: "cold-stone",
image: "./img/cold-stone.png",
},
{
name: "dairy-queen",
image: "./img/dairy-queen.png",
},
{
name: "dennys",
image: "./img/dennys.png",
},
{
name: "dominos-pizza",
image: "./img/dominos-pizza.png",
},
{
name: "dunkin",
image: "./img/dunkin.png",
},
{
name: "five-guys",
image: "./img/five-guys.png",
},
{
name: "ihop",
image: "./img/ihop.png",
},
{
name: "kfc",
image: "./img/kfc.png",
},
{
name: "krispy-kreme",
image: "./img/krispy-kreme.png",
},
{
name: "mcdonalds",
image: "./img/mcdonalds.png",
},
{
name: "olive-garden",
image: "./img/olive-garden.png",
},
{
name: "outback-steakhouse",
image: "./img/outback-steakhouse.png",
},
{
name: "panera-bread",
image: "./img/panera-bread.png",
},
{
name: "pizza-hut",
image: "./img/pizza-hut.png",
},
{
name: "popeyes",
image: "./img/popeyes.png",
},
{
name: "red-lobster",
image: "./img/red-lobster.png",
},
{
name: "sonic",
image: "./img/sonic.png",
},
{
name: "subway",
image: "./img/subway.png",
},
{
name: "taco-bell",
image: "./img/taco-bell.png",
},
{
name: "wendys",
image: "./img/wendys.png",
},
];