generated from CloudCannon/hydra-jekyll-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
70 lines (65 loc) · 1.77 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
68
69
70
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>PRMetrics - Optimize Your Pull Request Workflow</title>
<link rel="icon" href="siteicon.png" type="image/png">
<style>
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
margin: 0;
padding: 0;
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
background-color: #f8f9fa;
color: #2d3748;
}
.container {
text-align: center;
padding: 2rem;
max-width: 800px;
}
.logo {
width: 180px;
height: auto;
margin-bottom: 2rem;
}
h1 {
font-size: 2.5rem;
margin-bottom: 1rem;
color: #1a202c;
}
.tagline {
font-size: 1.5rem;
margin-bottom: 2rem;
color: #4a5568;
line-height: 1.4;
}
.coming-soon {
display: inline-block;
background-color: #2563eb;
color: white;
padding: 0.75rem 1.5rem;
border-radius: 0.5rem;
font-weight: 600;
font-size: 1.1rem;
}
</style>
</head>
<body>
<div class="container">
<img src="siteicon.png" alt="PRMetrics Logo" class="logo">
<h1>PRMetrics</h1>
<p class="tagline">
Find where your GitHub Pull Requests are getting stuck<br>
and merge quicker!
</p>
<div class="coming-soon">
Coming Soon
</div>
</div>
</body>
</html>