forked from pipeops-dev/pipeops-html
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
66 lines (66 loc) · 2.47 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>PipeOps HTML Template</title>
<link rel="stylesheet" href="./styles.css" />
</head>
<body>
<header><img src="./pipeops-light.svg" alt="pipeops logo" /></header>
<main>
<section class="hero">
<h1>Your deployment is successful 🎉</h1>
<p>
Now that your deployment is successful, there's a whole lot
more you can explore on PipeOps.
</p>
</section>
<section>
<div class="cardsWrapper">
<a href="https://docs.pipeops.io/" class="card">
<div><img src="./book.svg" />
<h2>Documentation</h2></div>
<p>Full details on what PipeOps has to offer</p>
</a>
<a href="https://pipeops.io/resources/guides" class="card">
<div> <img src="./layers.svg" />
<h2>Guides</h2></div>
<p>Get Started without stress</p>
</a>
<a href="https://pipeops.io/resources/tutorials" class="card">
<div>
<img src="./bookmark.svg" />
<h2>Tutorials</h2>
</div>
<p>How-tos from the basic to most advanced</p>
</a>
<a href="https://join.slack.com/t/pipeopscommunity/shared_invite/zt-23gmjrl0k-Pzm2cBgIMTsUu5Az73PYKg" class="card">
<div>
<img src="./slack.svg" />
<h2>Slack</h2>
</div>
<p>Join our community on Slack</p>
</a>
<a href="https://discord.gg/PQscGtfFD2" class="card">
<div>
<img src="./message-circle.svg" />
<h2>Discord</h2>
</div>
<p>Join our community on Discord and stay up to date with the latest on Pipeops</p>
</a>
</div>
</section>
</main>
<footer>
<!-- <img src="./pipeops-light.svg" alt="pipeops logo" /> -->
<p>© PipeOps -<a href="https://pipeops.io"> PipeOps.io</a> -
<a href="/">Github</a> -
<a href="https://discord.gg/PQscGtfFD2">Discord</a> -
<a href="https://join.slack.com/t/pipeopscommunity/shared_invite/zt-23gmjrl0k-Pzm2cBgIMTsUu5Az73PYKg">Slack</a> -
<a href="https://blog.pipeops.io/">Blog</a>
<a href="https://community.pipeops.io/">Community</a>
</p>
</footer>
</body>
</html>