-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
104 lines (96 loc) · 4.05 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="styles/style.css">
<title>Tricky bot</title>
</head>
<body>
<nav>
<ul class="container">
<li><a href="#">Home</a></li>
<li><a href="#">About</a></li>
<li><a href="#">Features</a></li>
<li><a href="#">Add to Slack</a></li>
</ul>
</nav>
<div class="title-area">
<div class="container">
<div>
<h1>Ticky<span>Bot</span></h1>
<p>Let your team manage their support tickets 100% inside Slack</p>
<a href="#">
<i class="fab fa-slack-hash"></i>
Add to <span>Slack</span>
</a>
</div>
<div>
<div class="image-circle"></div>
</div>
</div>
</div>
<div class="description">
<div class="container">
<div class="title">
<h2>What is <span>TickyBot</span></h2>
</div>
<div class="para">
<p>TickyBot is a Slack Bot 🤖 that lets you use support tickets on Slack. This way, you don't need to leave your beloved channel to assist your users, if you don't feel like it.</p>
</div>
<div class="para">
<p>With TickyBot you can easily check if you've received new tickets, change their status, or write a reply, and the ticket will instantly update itself on our site.</p>
</div>
<div class="full-para">
Support requests shouldn't be handled through Slack's direct messages.<br>
Image about someone asking silly questions and the workplace admin asking him/her to open a support ticket so other admins could look into the issue.
</div>
</div>
</div>
<div class="how-it-works-section">
<div class="container">
<div class="title">
<h2>How It Works</h2>
</div>
<div class="card">
<div class="image"></div>
<div class="para">
<p>You can add <span>Ticky</span>Bot to your Slack workplace by scrolling down or <a href="#">clicking here</a></p>
</div>
</div>
<div class="card">
<div class="image"></div>
<div class="para">
<p>Your users can open a ticket by typing <span class="code">/ticket</span> and their message into the chat field</p>
</div>
</div>
<div class="card">
<div class="image"></div>
<div class="para">
<p>Once you or another admin solved their problems you can type <span class="code">/ticket close #id</span> to close the ticket</p>
</div>
</div>
</div>
</div>
<div class="details">
<div class="box">
<h2>Start Using <span>Ticky</span>Bot Today</h2>
<p><span>Ticky</span>Bot allows Slack teams to manage their support tickets 100% inside Slack, without having to switch between different apps.</p>
<a href="#">
<i class="fab fa-slack-hash"></i>
Add to <span>Slack</span>
</a>
<p>... so you don't need to go back and forth with another app.</p>
</div>
</div>
<div class="footer">
<p>
Made with ❤️ by the Chingu Bears 19 team<br>
Source code is available on our <a href="#">GitHub page</a><br>
The app is not created by, affiliated with, or supported by Slack Technologies, Inc.
</p>
</div>
<script defer src="https://use.fontawesome.com/releases/v5.0.9/js/all.js" integrity="sha384-8iPTk2s/jMVj81dnzb/iFR2sdA7u06vHJyyLlAd4snFpCl/SnyUjRrbdJsw1pGIl" crossorigin="anonymous"></script>
</body>
</html>