-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
97 lines (96 loc) · 5.07 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0 maximum-scale=1,user-scalable=no">
<title>TickyBot</title>
<link rel="stylesheet" href="styles.css">
<link href="https://fonts.googleapis.com/css?family=Signika:300,400,600,700&display=swap" rel="stylesheet">
</head>
<body>
<nav class="page-navigation">
<ul>
<li class="home"><a href="#home">Home</a></li>
<li class="about"><a href="#about">About</a></li>
<li class="features"><a href="#features">Features</a></li>
<li class="add"><a href="https://slack.com">Add to Slack</a></li>
</ul>
</nav>
<header id="home">
<div class="container left">
<h1><span class="ticky-bold">Ticky</span>Bot</h1>
<p>Let your team manage their support tickets 100% inside Slack</p>
<button class="btn btn-light">
<img src="img/5e594ad76535670e7f227f79c6b72799.svg" alt="">
<a href="https://slack.com">Add to <strong>Slack</strong></a>
</button>
</div>
<div class="container right">
<figure>
<img src="img/bot.svg" alt="" class="bot">
</figure>
</div>
</header>
<main>
<section class="about-card" id="about">
<h3 class="title title-about">What is <strong>Ticky</strong>Bot</h3>
<div class="box">
<div class="half-left">
<p><strong>Ticky</strong>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 class="half-right">
<p>With <strong>Ticky</strong>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>
<div class="full">
<p>Support request shouldn't be handled through Slack's direct messages. <br>
<em>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.</em></p>
</div>
</section>
<section class="feature-cards" id="features">
<h3 class="title title-feature">How It Works</h3>
<div class="cards">
<figure class="one">
<img src="img/5e294ff6045f826e1b4f452df8897fb8.svg" alt="" class="fig-img">
<figcaption class="description">
You can add TickyBot to your Slack workplace by scrolling down or <a href="#add">clicking here</a>
</figcaption>
</figure>
<figure class="two">
<img src="img/download.svg" alt="" class="fig-img">
<figcaption class="description">
Your users can open a ticket by typing /ticket and their message into the chat field
</figcaption>
</figure>
<figure class="three">
<img src="img/61dc5059d07b210a9e0a7881695a8e03.svg" alt="" class="fig-img">
<figcaption class="description">
Once you or another admin solved their problems you can type /ticket close #id to close the ticket
</figcaption>
</figure>
</div>
</section>
<section class="addslack" id="add">
<h3 class="title title-add">Start Using <strong>Ticky</strong>Bot Today</h3>
<p><strong>Ticky</strong>Bot allows Slack teams to manage their support tickets 100% inside Slack, without having to switch between different apps.</p>
<button class="btn btn-dark">
<img src="img/5e594ad76535670e7f227f79c6b72799.svg" alt="">
<a href="https://slack.com">Add to <strong>Slack</strong></a>
</button>
<p>... so you don't need to go back and forth with another app.</p>
</section>
</main>
<footer>
<p>Made with ❤️ by itzmidinesh</p>
<p>Source code is available on my <a href="https://github.com/itzmidinesh/TickyBot">GitHub page</a> </p>
<p>The app is not created by, affiliated with, or supported by Slack Technologies, Inc</p>
<button onclick="scrollButton()" id="my-btn">
<img src="img/top.svg" alt="">
</button>
</footer>
<script src="script.js"></script>
</body>
</html>