-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
35 lines (30 loc) · 1.26 KB
/
index.html
File metadata and controls
35 lines (30 loc) · 1.26 KB
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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="Production-grade React boilerplate for Cloudflare Pages" />
<meta name="theme-color" content="#0f62fe" />
<meta name="color-scheme" content="light dark" />
<!-- Open Graph -->
<meta property="og:title" content="CF React Boilerplate" />
<meta property="og:description" content="Production-grade React + Cloudflare Pages starter" />
<meta property="og:type" content="website" />
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<link rel="apple-touch-icon" href="/icons/icon-192.png" />
<!-- Preconnect for Google Fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<!-- Critical inline CSS to prevent FOUC (flash of unstyled content) -->
<style>
:root { background-color: #f4f4f4; }
[data-theme="dark"] { background-color: #161616; }
#root { min-height: 100vh; }
</style>
<title>CF React</title>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>