-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
67 lines (63 loc) · 2.21 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link
href="https://unpkg.com/boxicons@2.1.4/css/boxicons.min.css"
rel="stylesheet"
/>
<link rel="icon" type="image/icon type" href="/icon_small.png" />
<title>Reddiculous</title>
<!-- Meta Tags for SEO -->
<meta
name="description"
content="Reddiculous is an anonymous Reddit client built with React. Browse Reddit without logging in, and access all types of posts."
/>
<meta
name="keywords"
content="Reddit, Reddit Client, Anonymous Reddit, React, NSFW Reddit, Browse Reddit, Reddit App"
/>
<meta name="author" content="mescalito" />
<meta property="og:title" content="Reddiculous - Anonymous Reddit Client" />
<meta
property="og:description"
content="Browse Reddit anonymously with Reddiculous. No login required to view all types of posts."
/>
<meta property="og:image" content="/icon_big.png" />
<meta
property="og:url"
content="https://mescalito.github.io/Reddiculous/"
/>
<meta name="twitter:card" content="summary_large_image" />
<meta
name="twitter:title"
content="Reddiculous - Anonymous Reddit Client"
/>
<meta
name="twitter:description"
content="Browse Reddit anonymously with Reddiculous. No login required to view all types of posts."
/>
<meta name="twitter:image" content="/icon_big.png" />
<!-- Structured Data -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "WebApplication",
"name": "Reddiculous",
"url": "https://mescalito.github.io/Reddiculous/",
"description": "Reddiculous is an anonymous Reddit client built with React. Browse Reddit without logging in, and access all types of posts, including NSFW content.",
"applicationCategory": "WebApplication",
"operatingSystem": "All",
"author": {
"@type": "Person",
"name": "mescalito"
}
}
</script>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.jsx"></script>
</body>
</html>