-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
116 lines (92 loc) · 3.98 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
107
108
109
110
111
112
113
114
115
116
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Siesta</title>
<link rel="stylesheet" href="https://unicons.iconscout.com/release/v2.1.6/css/unicons.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link
href="https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&family=Poppins:wght@300;400;500;600;700&display=swap"
rel="stylesheet">
<link rel="stylesheet" href="./css/style.css">
</head>
<body>
<nav>
<div class="container nav__container">
<a href="index.html">
<h4>Siesta</h4>
</a>
<ul class="nav__menu">
<li><a href="index.html">Home</a></li>
<li><a href="slashcommands.html">Slash Commands</a></li>
<li><a href="commands.html">Commands</a></li>
<li><a href="invite.html">Invite</a></li>
</ul>
<button id="open-menu-btn"><i class="uil uil-bars"></i></button>
<button id="close-menu-btn"><i class="uil uil-multiply"></i></button>
</div>
</nav>
<header>
<div class="container header__container">
<div class="header__left">
<h1>Đôi lời về Siesta</h1>
<p>
Một bot mà tôi viết vui để tiện quản lý server, anh em có thể invite để thử hay làm gì cũng được.
</p>
<a href="https://discord.com/oauth2/authorize?client_id=853525129057402921&permissions=8&scope=bot%20applications.commands"
class="btn btn-primary" target="_blank" rel="noopener noreferrer">Mời bot vào server</a>
</div>
<div class="header__right">
<div class="header__right-img">
<img class="home-image" src="./images/slashcommandsExample.png">
</div>
</div>
</div>
</header>
<section class="faqs">
<h2>Một số câu hỏi thường gặp</h2>
<div class="container faqs__container">
<article class="faq">
<div class="faq__icon"><i class="uil uil-plus"></i></div>
<div class="question__answer">
<h4>Tại sao bot lúc on lúc off</h4>
<p>Bởi vì dạo này đói kém, tôi hết tiền thuê VPS treo 24/7 nên
bot không online thường xuyên được :v
</p>
</div>
</article>
<article class="faq">
<div class="faq__icon"><i class="uil uil-plus"></i></div>
<div class="question__answer">
<h4>Tại sao đôi khi bot không phản hồi</h4>
<p>
Do tôi chạy bot bằng mạng 4G nên thi thoảng rất lag, nên nếu gặp
phải lỗi này thì ae thử chạy lại lệnh nhé!
</p>
</div>
</article>
</div>
</section>
<footer class="footer">
<div class="container footer__container">
<div class="footer__1">
<a href="index.html" class="footer__logo">
<h4>Siesta</h4>
</a>
<p>Một bot quản lý server đơn giản</p>
<p>BotName (Discord): Siesta#4424</p>
<p>BotID (Discord): 853525129057402921</p>
</div>
<div class="footer__2">
<h4>Developer</h4>
<p>UserName (Discord): vmc</p>
<p>UserID (Discord): 645870566158630912</p>
</div>
</div>
</footer>
<script src="./js/vmc.js"></script>
</body>
</html>