-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
92 lines (80 loc) · 2.39 KB
/
index.html
File metadata and controls
92 lines (80 loc) · 2.39 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="refresh" content="0; url=website/index.html">
<title>ReddJSON — Reddit Post JSON Copier</title>
<link rel="icon" href="icons/reddjosn.svg" type="image/svg+xml">
<style>
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
display: flex;
align-items: center;
justify-content: center;
min-height: 100vh;
margin: 0;
background: #f8f9fa;
color: #1a1a2e;
}
.container {
text-align: center;
padding: 2rem;
}
img {
width: 80px;
height: 80px;
margin-bottom: 1rem;
}
h1 {
font-size: 1.5rem;
margin-bottom: 0.5rem;
}
p {
color: #6b6b7b;
margin-bottom: 1.5rem;
}
a {
color: #FF4500;
text-decoration: none;
font-weight: 600;
}
a:hover {
text-decoration: underline;
}
.links {
display: flex;
gap: 1.5rem;
justify-content: center;
flex-wrap: wrap;
}
.links a {
padding: 8px 16px;
border: 1px solid #e8e8ec;
border-radius: 6px;
background: white;
transition: all 0.2s;
}
.links a:hover {
border-color: #FF4500;
text-decoration: none;
}
</style>
</head>
<body>
<div class="container">
<img src="icons/reddjosn.svg" alt="ReddJSON Logo">
<h1>ReddJSON</h1>
<p>Copy Reddit post JSON with one click</p>
<div class="links">
<a href="website/index.html">Home</a>
<a href="website/features.html">Features</a>
<a href="website/installation.html">Installation</a>
<a href="website/usage.html">Usage</a>
<a href="https://github.com/Mr-Dark-debug/ReddJSON" target="_blank" rel="noopener">GitHub</a>
</div>
<p style="margin-top: 1.5rem; font-size: 0.85rem;">Redirecting to website... <a href="website/index.html">Click
here</a> if not redirected.</p>
</div>
</body>
</html>