-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
29 lines (27 loc) · 1.19 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
<!DOCTYPE html>
<html lang="en" data-theme="light">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/icons8-pixel-cat-48.webp" />
<link rel="stylesheet" href="/src/index.css" />
<!-- Fonts -->
<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=Assistant:wght@300;400;500;600;700&display=swap" rel="stylesheet"> -->
<link
href="https://fonts.googleapis.com/css2?family=Lato:wght@300;400;500;600;700&family=Montserrat:wght@500;600;700&display=swap"
rel="stylesheet" />
<meta
name="description"
content="On the blog: A full-stack blog site built using react and firebase. Sign up and create an account to get the most out of the webapp."
/>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Blog site</title>
</head>
<body
class="text-[var(--text-base)] font-lato bg-[var(--white-secondary)] min-h-screen">
<div id="root"></div>
<script type="module" src="/src/index.jsx"></script>
<script type="module" src="/src/firebase/firebaseApp.js"></script>
</body>
</html>