-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
40 lines (37 loc) · 1.5 KB
/
about.html
File metadata and controls
40 lines (37 loc) · 1.5 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>About Me</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="static/bulma.min.css">
<style>
.navbar.is-link .navbar-item.is-active {
background-color: #59168B;
color: white;
}
</style>
</head>
<body>
<section class="section">
<div class="container">
<nav class="navbar is-link" role="navigation">
<div class="navbar-menu">
<div class="navbar-start">
<a class="navbar-item" href="index.html">Home</a>
<a class="navbar-item is-active" href="about.html">About</a>
</div>
</div>
</nav>
<div class="content">
<h1 class="title">About</h1>
<p class="mt-5">
Modern cloud systems fail for one reason: they drift into unsafe states faster than humans or tools can react. This site introduces a new engineering approach—the Runtime Control Plane (RCP)—that applies proven principles from control systems, safety engineering, and distributed systems to keep cloud environments within safe boundaries at all times. The goal is simple: prevent outages before they begin, reduce recovery to seconds, and give engineers a clearer model of how their systems behave.
<strong>Want to see how RCP solves this?</strong><br>
Email me at <a href="mailto:bparanj@zepho.com">bparanj@zepho.com</a>.
</p>
</div>
</div>
</section>
</body>
</html>