-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfeatures.html
124 lines (117 loc) · 4.75 KB
/
features.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
112
113
114
115
116
117
118
119
120
121
122
123
124
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css" integrity="sha512-iBBXm8fW90+nuLcSKlbmrPcLa0OT92xO1BIsZ+ywDWZCvqsWgccV3gFoRBv0z+8dLJgyAHIhR35VZc2oM/gI1w==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="stylesheet" href="./css//utilites.css">
<link rel="stylesheet" href="./css//style.css">
<title>Heroki | Cloud Hosting Platform</title>
</head>
<body>
<!-- Navbar -->
<div class="navbar">
<div class="container flex">
<h1 class="logo">Heroki</h1>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="features.html">Features</a></li>
<li><a href="docs.html">Docs</a></li>
</ul>
</nav>
</div>
</div>
<!-- Features Head -->
<section class="features-head">
<div class="container grid">
<div>
<h1>Features</h1>
<p>Check out the features of Loruki that separate us from the
competition</p>
</div>
<img src="./images/server.png" alt="server">
</div>
</section>
<!-- sub-head -->
<section class="features-sub-head">
<div class="container grid">
<div>
<h1>The Heroki Platform</h1>
<p>Your apps run inside smart containers in a fully managed runtime environment,
we handle everything critical for production — configuration, orchestration,
load balancing, failovers, logging, security, and more.</p>
</div>
<img src="./images/server2.png" alt="server">
</div>
</section>
<!-- Main -->
<main class="features-main">
<div class="container grid">
<div class="card flex">
<i class="fas fa-server fa-3x"></i>
<p>
Heroki scales in an instant, both vertically and horizontally. You can elegantly run
everything from tiny hobby projects to enterprise-grade e-commerce handling Black Friday surges.
</p>
</div>
<div class="card flex">
<i class="fas fa-network-wired fa-3x"></i>
<p>
Network isolated, dedicated runtime environments
for enhanced privacy, power, and performance.
</p>
</div>
<div class="card flex">
<i class="fas fa-laptop-code fa-3x"></i>
<p>
Work fearlessly — Heroki’s build system
</p>
</div>
<div class="card flex">
<i class="fas fa-database fa-3x"></i>
<p>
Reliable and secure PostgreSQL as a service with easy setup, encryption at rest,
simple scaling, database forking, continuous protection, and more.
</p>
</div>
<div class="card flex">
<i class="fas fa-power-off fa-3x"></i>
<p>
Highly responsive SLAs, plus expert help with scaling, application
architecture design, white-glove onboarding, and more.
</p>
</div>
<div class="card flex">
<i class="fas fa-upload fa-3x"></i>
<p>
Seamlessly integrated permissions sets to give managers control,
and ensures users have the access they need.
</p>
</div>
</div>
</main>
<!-- footer -->
<footer class="footer">
<div class="container grid">
<div>
<h1>Heroki</h1>
<p>Copyright © 2021</p>
</div>
<nav>
<ul>
<li><a href="#">Home</a></li>
<li><a href="./features.html">Features</a></li>
<li><a href="./docs.html">Docs</a></li>
</ul>
</nav>
<div class="social">
<a href="https://github.com/abhisekill" target="_blank"><i class="fab fa-github fa-2x"></i></a>
<a href="https://www.linkedin.com/in/abhisekill" target="_blank"><i class="fab fa-linkedin fa-2x"></i></a>
<a href="https://www.instagram.com/abhi_shek_05/" target="_blank"><i class="fab fa-instagram fa-2x"></i></a>
</div>
</div>
</footer>
</body>
</html>