forked from layeredy/uptimematrix.com
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
111 lines (110 loc) · 5.61 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>UptimeMatrix - The most customizable status-page</title>
<link rel="icon" href="https://cdn.layeredy.com/uptimematrix/logo.png" type="image/png">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.css">
<link rel="stylesheet" href="styles.css">
<meta name="description" content="Let your users know if something goes down">
<meta property="og:title" content="UptimeMatrix">
<meta property="og:description" content="Let your users know if something goes down.">
<meta property="og:type" content="website">
<meta name="twitter:card" content="summary_large_image">
</head>
<body>
<div class="announcement-bar">
You can now register for an account via our <a href="https://app.uptimematrix.com">dashboard</a>
</div>
<div class="container">
<header>
<div class="logo"><img src="https://cdn.layeredy.com/uptimematrix/wordmark.png" width="200" height=auto alt="UptimeMatrix Logo"></div>
<div class="nav-buttons">
</div>
</header>
<main>
<section class="hero">
<h1>The most customizable status-page</h1>
<p class="subtitle">
Let your users know if your <span class="text-switcher-container"><span class="text-switcher"></span> goes down</span>
</p>
</section>
<div class="demo-container">
<img id="demo-image" src="assets/homepage-lightmode.png" alt="UptimeMatrix Demo">
</div>
<section class="features">
<h2>Features</h2>
<div class="features-grid">
<div class="feature-card">
<div class="feature-icon"><i class="bi bi-github"></i></div>
<div class="feature-title">Open-source</div>
<p>Our status-pages are open-source and can be self-hosted and changed however you like.</p>
</div>
<div class="feature-card">
<div class="feature-icon"><i class="bi bi-wallet2"></i></div>
<div class="feature-title">Completely free</div>
<p>UptimeMatrix is entirely free if you chose to self-host your status-page, even if you use our dashboard</p>
</div>
<div class="feature-card">
<div class="feature-icon"><i class="bi bi-palette"></i></div>
<div class="feature-title">Customizable Design</div>
<p>Tailor your status page to match your brand identity. You can change everything from the colors to the layout</p>
</div>
</div>
</section>
<section class="pricing">
<h2>Pricing</h2>
<div class="pricing-grid">
<div class="pricing-plan">
<div class="plan-name">Self-hosted</div>
<div class="plan-price">Free</div>
<ul class="plan-features">
<li>No limitations*</li>
<li>Bring your own server</li>
</ul>
<p style="font-size: 0.75em;">*When using our dashboard, we have fair-use limitations to prevent abuse</p>
<br />
<a href="https://app.uptimematrix.com" class="cta-button">Create an account</a>
</div>
<div class="pricing-plan">
<div class="plan-name">Open-source</div>
<div class="plan-price">Free</div>
<ul class="plan-features">
<li>No limitations*</li>
<li>All paid features</li>
</ul>
<p style="font-size: 0.75em;">Only for open-source projects</p>
<p style="font-size: 0.75em;">*When using our dashboard, we have fair-use limitations to prevent abuse</p>
<br />
<a href="https://clientarea.layeredy.com/support/tickets/add" class="cta-button">Open a ticket</a>
</div>
<div class="pricing-plan">
<div class="plan-name">Managed</div>
<div class="plan-price">$10/mo</div>
<ul class="plan-features">
<li>No limitations*</li>
<li>Hosted and managed by us</li>
</ul>
<p style="font-size: 0.75em;">*When using our dashboard, we have fair-use limitations to prevent abuse</p>
<br />
<a href="https://clientarea.layeredy.com/order/product?pid=280d1639-e237-d43e-20da-54610589e572" class="cta-button">Order plan</a>
</div>
</div>
</section>
</main>
<footer>
<div class="footer-icons">
<a href="https://github.com/layeredy">
<i class="bi bi-github footer-icon"></i>
</a>
<i class="bi bi-sun-fill footer-icon" id="theme-toggle"></i>
</div>
<div class="copyright">
Copyright 2024 © UptimeMatrix by Layeredy
</div>
</footer>
</div>
<script src="script.js"></script>
</body>
</html>