generated from chingu-voyages/voyage-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
21 lines (19 loc) · 1.06 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
<link rel="manifest" href="/site.webmanifest">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Kalam:wght@700&family=Open+Sans:wdth,wght@75,700&family=Rasa:wght@400;600&display=swap" rel="stylesheet">
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>YumYumYes! Recipes</title>
</head>
<body class="bg-[#bfe2c4] bg-gradient-site-background p-4 md:p-8 xl:px-20 xl:py-28 2xl:px-28 2xl:pb-60 text-lg xl:text-xl">
<div id="root" class="rounded-2xl shadow-md p-0 max-w-[1440px] mx-auto bg-yellow-50"></div>
<script type="module" src="/src/main.jsx"></script>
</body>
</html>