generated from BloomTech-Labs/template-fe
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
93 lines (93 loc) · 2.56 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
<link
href="https://fonts.googleapis.com/css2?family=Pacifico&family=Poppins:wght@300&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="./main.css" />
</head>
<body>
<header>
<nav class="nav">
<img
src="./public/images/Ping_Catcher.png"
alt="Application"
class="logo"
width="150px"
/>
<ul class="nav-links">
<li class="nav-link">Register</li>
<li class="nav-link">#</li>
</ul>
</nav>
</header>
<main>
<section class="hero">
<div class="cta">
<div class="cta-wrapper">
<h1 class="cta-title">Ping Catcher</h1>
<p class="cta-info-top">
Time to gain <span class="underline">control</span> over your
notifications. Create your own channels to group notifications
into your favorite online chat apps.
</p>
<p class="cta-info text-left">
Organize, color code, even snooze a message and get back to it
when you have a moment. Improve your overall sanity and increase
productivity with Ping Catcher.
</p>
<a href="" class="cta-btn">#</a>
</div>
</div>
</section>
<section class="info">
<article class="center info-card">
<img
src="./public/images/slack-hash-brands.svg"
alt="The communication platform"
class="info-img"
width="150px"
/>
<h2 class="info-title">Slack</h2>
<p class="lighten">
Current version is built for slack. Secured with Okta and fully
immersed within the Slack api.
</p>
</article>
<article class="center info-card">
<img
src="./public/images/vib-chat.svg"
alt="Organize those pings that are important, but are not directed at you."
class="info-img"
width="150px"
/>
<h2 class="info-title">Organize</h2>
<p class="lighten">
Create your own channels / subscriptions to collect those pings that
are important to you.
</p>
</article>
<article class="center info-card">
<img
src="./public/images/at-solid.svg"
alt="Catch every ping sent directly to you"
class="info-img"
width="150px"
/>
<h2 class="info-title">Notification</h2>
<p class="lighten">
Never miss a ping directed to you. Snooze it and get right back to
work!
</p>
</article>
</section>
</main>
<footer>
<h1 class="title">Ping Catcher</h1>
</footer>
</body>
</html>