-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathindex.html
75 lines (72 loc) · 2.16 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/src/assets/react.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>
<{VITE_WEBSITE_NAME}>
</title>
<meta name="description" content="<{VITE_WEBSITE_DESCRIPTION}>">
<meta name="keywords" content="<{VITE_WEBSITE_KEYWORDS}>">
<meta name="author" content="<{VITE_WEBSITE_AUTHOR}>">
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "HealthAndBeautyBusiness",
"image": [
"https://picsum.photos/id/1013/200/200",
"https://picsum.photos/id/1013/800/600",
"https://picsum.photos/id/1013/1920/1080"
],
"name": "<{VITE_WEBSITE_NAME}>",
"title": "<{VITE_WEBSITE_NAME}>",
"description": "<{VITE_WEBSITE_DESCRIPTION}>",
"address": {
"@type": "PostalAddress",
"streetAddress": "<{VITE_ADDRESS_STREET}>",
"addressLocality": "<{VITE_ADDRESS_CITY}>",
"addressRegion": "<{VITE_ADDRESS_REGION}>",
"postalCode": "<{VITE_ADDRESS_ZIP}>",
"addressCountry": "<{VITE_ADDRESS_COUNTRY}>"
},
"review": {
"@type": "Review",
"reviewRating": {
"@type": "Rating",
"ratingValue": "5",
"bestRating": "5"
},
"author": {
"@type": "Company",
"name": "<{VITE_WEBSITE_AUTHOR}>"
}
},
"geo": {
"@type": "GeoCoordinates",
"latitude": {latitude},
"longitude": {longitude}
},
"brand": {brands},
"url": "{url}",
"telephone": "<{VITE_PHONE}>",
"paymentAccepted": "{paymentAccepted}",
"currenciesAccepted": "{currenciesAccepted}",
"priceRange": "{priceRange}",
"openingHoursSpecification": [
{
"@type": "OpeningHoursSpecification",
"dayOfWeek": "{dayOfWeek}",
"opens": "{opens}",
"closes": "{closes}"
}
],
"acceptsReservations": "{acceptsReservations}"
}
</script>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>