Skip to content

Commit 01e642b

Browse files
committed
added navigation to index page
1 parent 84f0ee6 commit 01e642b

File tree

1 file changed

+59
-2
lines changed

1 file changed

+59
-2
lines changed

docs/index.html

Lines changed: 59 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,61 @@
11
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
6+
<title>Home</title>
7+
<style>
8+
body {
9+
margin: 0;
10+
padding: 0;
11+
height: 100vh;
12+
display: flex;
13+
justify-content: center;
14+
align-items: center;
15+
background-color: #f5f5f5;
16+
font-family: Arial, sans-serif;
17+
}
18+
.container {
19+
text-align: center;
20+
}
21+
h1 {
22+
margin-bottom: 40px;
23+
color: #333;
24+
font-size: 2.5em;
25+
}
26+
.links a {
27+
display: inline-block;
28+
margin: 10px 20px;
29+
padding: 15px 25px;
30+
font-size: 1.2em;
31+
color: #fff;
32+
background-color: #007BFF;
33+
text-decoration: none;
34+
border-radius: 8px;
35+
transition: background-color 0.3s, transform 0.3s;
36+
}
37+
.links a:hover {
38+
background-color: #0056b3;
39+
transform: translateY(-3px);
40+
}
41+
@media (max-width: 600px) {
42+
h1 {
43+
font-size: 2em;
44+
}
45+
.links a {
46+
display: block;
47+
margin: 10px auto;
48+
width: 80%;
49+
}
50+
}
51+
</style>
52+
</head>
253
<body>
3-
<H3>Hello world!</H3>
4-
</body>
54+
<div class="container">
55+
<div class="links">
56+
<a href="/telegram-bot-api/">Telegram Bot API Documentation</a>
57+
<a href="/telegram-bot-playground/">Bot Editor</a>
58+
</div>
59+
</div>
60+
</body>
61+
</html>

0 commit comments

Comments
 (0)