-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMenu.completo
More file actions
151 lines (140 loc) · 3.76 KB
/
Menu.completo
File metadata and controls
151 lines (140 loc) · 3.76 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
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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
<html lang="pt">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Menu - Alex Sumos</title>
<style>
body {
font-family: Arial;
margin:0;
background:#f5f5f5;
}
/* HEADER */
header {
background:red;
color:white;
padding:20px;
text-align:center;
font-size:22px;
}
/* CARD */
.card {
background:white;
margin:10px;
padding:10px;
border-radius:10px;
display:flex;
align-items:center;
}
.card img {
width:80px;
height:80px;
border-radius:10px;
margin-right:10px;
object-fit:cover;
}
.info {
flex:1;
}
.price {
color:red;
font-weight:bold;
}
button {
background:#25D366;
color:white;
border:none;
padding:8px;
border-radius:5px;
}
/* WHATSAPP */
.whatsapp {
position:fixed;
bottom:20px;
right:20px;
background:#25D366;
color:white;
padding:15px;
border-radius:50%;
font-size:20px;
}
</style>
<script>
function pedir(item){
let msg = "Olá, quero pedir: " + item;
let url = "https://wa.me/258846874780?text=" + encodeURIComponent(msg);
window.open(url);
</script>
</head>
<body>
<header>🍽️ Menu</header>
<h2 style="padding:10px;color:red;">🍗 Refeições</h2>
<div class="card">
<img src="frango.jpg">
<div class="info">
¼ de frango grelhado
<div class="price">250 MZN</div>
</div>
<button onclick="pedir('¼ de frango grelhado')">Pedir</button>
</div>
<div class="card">
<img src="batata.jpg">
<div class="info">
Dose de batata
<div class="price">100 MZN</div>
</div>
<button onclick="pedir('Dose de batata')">Pedir</button>
</div>
<h2 style="padding:10px;color:red;">🥪 Sandes</h2>
<div class="card">
<img src="sandes_simples.jpg">
<div class="info">
Sandes simples
<div class="price">40 MZN</div>
</div>
<button onclick="pedir('Sandes simples')">Pedir</button>
</div>
<div class="card">
<img src="sandes_mista.jpg">
<div class="info">
Sandes mista
<div class="price">75 MZN</div>
</div>
<button onclick="pedir('Sandes mista')">Pedir</button>
</div>
<h2 style="padding:10px;color:red;">🍲 Sopas</h2>
<div class="card">
<img src="sopa_feijao.jpg">
<div class="info">
Sopa de feijão
<div class="price">75 MZN</div>
</div>
<button onclick="pedir('Sopa de feijão')">Pedir</button>
</div>
<div class="card">
<img src="sopa_legumes.jpg">
<div class="info">
Sopa de legumes
<div class="price">100 MZN</div>
</div>
<button onclick="pedir('Sopa de legumes')">Pedir</button>
</div>
<h2 style="padding:10px;color:red;">🍹 Sumos</h2>
<div class="card"><img src="manga.jpg"><div class="info">Sumo de manga<div class="price">50 MZN</div></div><button onclick="pedir('Sumo de manga')">Pedir</button></div>
<div class="card"><img src="laranja.jpg"><div class="info">Sumo de laranja<div class="price">50 MZN</div></div><button onclick="pedir('Sumo de laranja')">Pedir</button></div>
<div class="card"><img src="ananas.jpg"><div class="info">Sumo de ananás<div class="price">50 MZN</div></div><button onclick="pedir('Sumo de ananás')">Pedir</button></div>
<div class="card"><img src="melancia.jpg"><div class="info">Sumo de melancia<div class="price">75 MZN</div></div><button onclick="pedir('Sumo de melancia')">Pedir</button></div>
<div class="card"><img src="maracuja.jpg"><div class="info">Sumo de maracujá<div class="price">50 MZN</div></div><button onclick="pedir('Sumo de maracujá')">Pedir</button></div>
<div class="card"><img src="goiaba.jpg"><div class="info">Sumo de goiaba<div class="price">50 MZN</div></div><button onclick="pedir('Sumo de goiaba')">Pedir</button></div>
<h2 style="padding:10px;color:red;">🍨 Extras</h2>
<div class="card">
<img src="iogurte_malambe.jpg">
<div class="info">
Iogurte de malambe
<div class="price">50 MZN</div>
</div>
<button onclick="pedir('Iogurte de malambe')">Pedir</button>
</div>
<a class="whatsapp" href="https://wa.me/258846874780">💬</a>
</body>
</html>