-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
48 lines (44 loc) · 1.83 KB
/
index.html
File metadata and controls
48 lines (44 loc) · 1.83 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
36
37
38
39
40
41
42
43
44
45
46
47
48
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<link rel="apple-touch-icon" href="/apple-touch-icon.png" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="theme-color" content="#4f46e5" />
<meta name="author" content="Smart MicroBlog Team" />
<meta name="robots" content="index, follow" />
<!-- Generated title will be replaced by React app but we set a fallback -->
<title>Smart MicroBlog | Express Your Thoughts in 300 Characters or Less</title>
<!-- Structured data -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "WebSite",
"name": "Smart MicroBlog",
"url": "https://smartmicroblog.com",
"potentialAction": {
"@type": "SearchAction",
"target": "https://smartmicroblog.com/search?q={search_term_string}",
"query-input": "required name=search_term_string"
}
}
</script>
<!-- Preconnect to important domains -->
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<!-- Preload critical resources -->
<link rel="preload" as="style" href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap" />
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap" />
</head>
<body>
<div id="root"></div>
<noscript>
<div style="text-align: center; padding: 2rem;">
<h1>Smart MicroBlog</h1>
<p>Please enable JavaScript to use this application.</p>
</div>
</noscript>
<script type="module" src="/src/main.jsx"></script>
</body>
</html>