-
Notifications
You must be signed in to change notification settings - Fork 101
/
index.html
43 lines (36 loc) · 1.86 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="./index.css" />
<link
rel="shortcut icon"
href="/src/assets/logo.png"
type="image/x-icon"
/>
<!-- HTML Meta Tags -->
<title>Hungry Hero</title>
<meta name="description" content="Hungry Hero is your ultimate guide to finding the best restaurants near you. Hungry Hero is the only website you need to satisfy your hunger.">
<!-- Open Graphs Meta Tags -->
<meta property="og:url" content="https://hungry-hero-ag.netlify.app/">
<meta property="og:type" content="website">
<meta property="og:title" content="Hungry Hero">
<meta property="og:description" content="Hungry Hero is your ultimate guide to finding the best restaurants near you. Hungry Hero is the only website you need to satisfy your hunger.">
<meta property="og:image" content="https://hungry-hero-ag.netlify.app/logo.57dfec69.png">
<!-- Twitter Meta Tags -->
<meta name="twitter:card" content="summary_large_image">
<meta property="twitter:domain" content="hungry-hero-ag.netlify.app">
<meta property="twitter:url" content="https://hungry-hero-ag.netlify.app/">
<meta name="twitter:title" content="Hungry Hero">
<meta name="twitter:description" content="Hungry Hero is your ultimate guide to finding the best restaurants near you. Hungry Hero is the only website you need to satisfy your hunger.">
<meta name="twitter:image" content="https://hungry-hero-ag.netlify.app/logo.57dfec69.png">
<script src="https://cdn.tailwindcss.com"></script>
</head>
<body class="h-screen">
<div id="root" class="root h-full"></div>
<!-- <h1>Not rendering</h1> -->
<script type="module" src="./src/app.js"></script>
</body>
</html>