-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
106 lines (90 loc) · 3.12 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
105
106
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>TickyBot - Your Support Ticket Slack Bot</title>
</head>
<body>
<!-- NAV BAR -->
<div id="nav">
<ul>
<li><a href="#jumbotron">Home</a></li>
<li><a href="#about">About</a></li>
<li><a href="#feature">Features</a></li>
<li><a href="#addtoslack">Add to Slack</a></li>
</ul>
</div>
<!-- JUMBOTRON -->
<div id="jumbotron">
<div id="jumbotron-left">
<h1>TickyBot</h1>
<p>Let your team manage their support tickets 100% inside Slack</p>
<!-- Todo - add button here -->
</div>
<div id="jumbotron-right">
<!-- Todo - add SVG image here -->
</div>
</div>
<!-- ABOUT -->
<div id="about">
<h2>What is <b>Ticky</b>Bot</h2>
<div>
<!-- Note: Left side content -->
<p><b>Ticky</b>Bot 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>
<!-- Note: Right side content -->
<p>With <b>Ticky</b>Bot 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>
<!-- Note: Bottom content -->
<p>Support requests shouldn't be handled through Slack's direct messages.<p>
<!-- Possible feature - add image here -->
</div>
</div>
<!-- FEATURES -->
<div>
<h2>How It Works</h2>
<!-- Feature on left -->
<div id="feature" class="feature">
<div class="feature-image">
<!-- Add image here -->
</div>
<div class="feature-text">
<p>You can add <b>Ticky</b>Bot to your Slack workplace by <a href="#addtoslack">clicking here</a></p>
</div>
</div>
<!-- Feature in middle -->
<div class="feature">
<div class="feature-image">
<!-- Add image here -->
</div>
<div class="feature-text">
<p>Your users can open a ticket by typing /ticket and their message into the chat field</p>
</div>
</div>
<!-- Feature on right -->
<div class="feature">
<div class="feature-image">
<!-- Add image here -->
</div>
<div class="feature-text">
<p>Once you or another admin solved their problems you can type /ticket close #id to close the ticket</p>
</div>
</div>
</div>
<!-- ADD TO SLACK -->
<div id="addtoslack">
<h2>Start Using <b>Ticky</b>Bot Today</h2>
<p><b>Ticky</b>Bot allows Slack teams to manage their support tickets 100% inside Slack, without having to switch between different apps.</p>
<!-- Add to slack button here -->
<p>... so you don't need to go back and forth with another app.</p>
</div>
<!-- FOOTER -->
<div id="footer">
<p>This clone page was created by the Chingu Toucans 11 Team</p>
<p><a href="https://github.com/AbdulkareemBarghouthi" target="_blank">Abdulkareem Barghouthi</a> and <a href="https://github.com/itsellej" target="_blank">Danielle (Elle) H.</a></p>
<p><a href="#jumbotron">Return to top</a></p>
</div>
</body>
</html>