forked from ragul-rofi/GitexTelegramBot
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
59f670c
commit 7110ff3
Showing
8 changed files
with
138 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,3 @@ | ||
|
||
|
||
__pycache__/ | ||
*.pyc | ||
config/.env |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
# Contributing to Gitex Bot | ||
|
||
Thank you for considering contributing to Gitex Bot! We appreciate your interest and welcome contributions from everyone. Please follow the guidelines below to ensure a smooth collaboration. | ||
|
||
## How to Contribute | ||
|
||
### Reporting Issues | ||
|
||
If you encounter any bugs or have feature requests, please open an issue in the [GitHub Issues](https://github.com/ragul-rofi/GitexTelegramBot/issues) section. Provide as much detail as possible, including steps to reproduce, expected behavior, and actual behavior. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>Gitex Bot</title> | ||
<link rel="stylesheet" href="styles.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=Roboto:wght@400;700&display=swap" rel="stylesheet"> | ||
<link rel="icon" href="images/BotFavicon.png" type="image/png"> | ||
</head> | ||
<body> | ||
<div class="container"> | ||
<img src="images/BotLogo.webp" alt="Bot Logo" class="bot-logo"> | ||
<h1>Gitex Bot</h1> | ||
<p>Discover GitHub repositories through Telegram!</p> | ||
<div class="links"> | ||
<a href="https://t.me/RepoGitEX_BOT" class="button telegram"> | ||
<img src="https://upload.wikimedia.org/wikipedia/commons/8/82/Telegram_logo.svg" alt="Telegram Logo" class="logo"> | ||
Launch Gitex Bot | ||
</a> | ||
<a href="https://github.com/ragul-rofi/GitexTelegramBot" class="button github"> | ||
<img src="https://upload.wikimedia.org/wikipedia/commons/9/91/Octicons-mark-github.svg" alt="GitHub Logo" class="logo"> | ||
View on GitHub | ||
</a> | ||
</div> | ||
</div> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,83 @@ | ||
* { | ||
box-sizing: border-box; | ||
margin: 0; | ||
padding: 0; | ||
} | ||
|
||
body { | ||
font-family: 'Roboto', sans-serif; | ||
background-color: #121212; | ||
color: #e0e0e0; | ||
display: flex; | ||
justify-content: center; | ||
align-items: center; | ||
height: 100vh; | ||
} | ||
|
||
.container { | ||
text-align: center; | ||
padding: 30px; | ||
border-radius: 10px; | ||
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3); | ||
background-color: #1e1e1e; | ||
max-width: 400px; | ||
} | ||
|
||
.bot-logo { | ||
width: 250px; | ||
height: auto; | ||
border-radius: 15px; | ||
margin-bottom: 15px; | ||
border: 2px solid #e0e0e0; | ||
} | ||
|
||
h1 { | ||
color: #fff; | ||
margin-bottom: 15px; | ||
} | ||
|
||
p { | ||
font-size: 16px; | ||
color: #b0b0b0; | ||
margin-bottom: 30px; | ||
} | ||
|
||
.links { | ||
display: flex; | ||
flex-direction: column; | ||
gap: 15px; | ||
} | ||
|
||
.button { | ||
display: inline-flex; | ||
align-items: center; | ||
justify-content: center; | ||
padding: 12px 20px; | ||
border-radius: 5px; | ||
text-decoration: none; | ||
font-weight: 700; | ||
color: white; | ||
transition: background-color 0.3s; | ||
} | ||
|
||
.telegram { | ||
background-color: #0088cc; | ||
} | ||
|
||
.github { | ||
background-color: #4f545c; | ||
} | ||
|
||
.logo { | ||
width: 20px; | ||
height: 20px; | ||
margin-right: 10px; | ||
} | ||
|
||
.telegram:hover { | ||
background-color: #0072a8; | ||
} | ||
|
||
.github:hover { | ||
background-color: #3a3f44; | ||
} |