-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
88 lines (87 loc) · 2.9 KB
/
index.html
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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="shortcut icon" type="image/png" href="/static/binq.png" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta
name="description"
content="At Binq, we have delicious bingsu (shaved ice dessert) and toppings that comes in sets"
/>
<meta
name="keywords"
content="bingsu, korean dessert, shaved ice, toppings, drinks, homemade"
/>
<title>Binq Dessert: Bingsus, Toppings & Drinks</title>
</head>
<!-- Google tag (gtag.js) -->
<script
async
src="https://www.googletagmanager.com/gtag/js?id=G-JK4NSKLNWE"
></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag("js", new Date());
gtag("config", "G-JK4NSKLNWE");
</script>
<script type="application/ld+json">
{
"@context": "http://schema.org",
"@type": "Restaurant",
"name": "Binq",
"image": "https://binqdessert.com/assets/bingsu-about-us-__XT3Z6X.webp",
"telephone": "0169007070",
"email": "[email protected]",
"address": {
"@type": "PostalAddress",
"streetAddress": "Desa Sri Hartamas"
},
"menu": "https://binqdessert.com/menu",
"servesCuisine": ["Korean", "dessert", "bingsu"],
"openingHoursSpecification": [
{
"@type": "OpeningHoursSpecification",
"dayOfWeek": {
"@type": "DayOfWeek",
"name": "Sun - Thu"
},
"opens": "Please insert valid ISO 8601 date/time here. Examples: 2015-07-27 or 2015-07-27T15:30"
},
{
"@type": "OpeningHoursSpecification",
"dayOfWeek": {
"@type": "DayOfWeek",
"name": "Fri - Sat"
},
"opens": "Please insert valid ISO 8601 date/time here. Examples: 2015-07-27 or 2015-07-27T15:30"
}
],
"url": "https://binqdessert.com/",
"aggregateRating": {
"@type": "AggregateRating",
"ratingValue": "4.7 / 5.0",
"ratingCount": "100+"
},
"review": {
"@type": "Review",
"author": {
"@type": "Person",
"name": "J K"
},
"datePublished": "2024-12-03",
"reviewRating": {
"@type": "Rating",
"ratingValue": "11/10"
},
"reviewBody": "Especially to all the bingsu lovers out there. They've got several choices of flavour which none are too sweet so it's also a perfect place for the older audience as well. Service wise, super friendly staff especially the young couple which are actually the owners of the place! Very attentive and are also super helpful to give suggestions if you're not sure what to try."
}
}
</script>
<body>
<div id="app"></div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>