forked from Guru322/GURU-Ai
-
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.
Version 2 Co-authored-by: GURU <107632293+guru65476@users.noreply.github.com> Co-authored-by: Amrit9304 <91752236+Amrit9304@users.noreply.github.com>
- Loading branch information
1 parent
011cdc3
commit 18c7ab4
Showing
272 changed files
with
4,041 additions
and
5,462 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 |
---|---|---|
|
@@ -4,3 +4,5 @@ package-lock.json | |
guru.data.json | ||
database.json | ||
.env | ||
session | ||
tmp |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,75 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>GURU-BOT Status</title> | ||
<style> | ||
body { | ||
font-family: Arial, sans-serif; | ||
background: linear-gradient(45deg, #ff0000, #00ff00, #0000ff, #ff0000); /* RGB gradient background */ | ||
background-size: 400% 400%; | ||
animation: backgroundGradient 10s linear infinite; | ||
margin: 0; | ||
padding: 0; | ||
display: flex; | ||
justify-content: center; | ||
align-items: center; | ||
height: 100vh; | ||
overflow: hidden; | ||
} | ||
.status { | ||
font-size: 36px; | ||
font-weight: bold; | ||
color: black; /* Text color */ | ||
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2); | ||
padding: 20px; | ||
border-radius: 10px; | ||
background-color: rgba(255, 255, 255, 0.7); /* Semi-transparent white background */ | ||
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); | ||
animation: moveRotate 4s linear infinite; | ||
position: absolute; | ||
} | ||
|
||
@keyframes moveRotate { | ||
0% { | ||
top: 0; | ||
left: 0; | ||
transform: rotate(0deg); | ||
} | ||
25% { | ||
top: 0; | ||
left: calc(100% - 300px); | ||
transform: rotate(90deg); | ||
} | ||
50% { | ||
top: calc(100% - 100px); | ||
left: calc(100% - 300px); | ||
transform: rotate(180deg); | ||
} | ||
75% { | ||
top: calc(100% - 100px); | ||
left: 0; | ||
transform: rotate(270deg); | ||
} | ||
100% { | ||
top: 0; | ||
left: 0; | ||
transform: rotate(360deg); | ||
} | ||
} | ||
|
||
@keyframes backgroundGradient { | ||
0% { | ||
background-position: 0% 50%; | ||
} | ||
100% { | ||
background-position: 100% 50%; | ||
} | ||
} | ||
</style> | ||
</head> | ||
<body> | ||
<div class="status">GURU BOT Online</div> | ||
</body> | ||
</html> |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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 +1 @@ | ||
worker: npm start | ||
web: npm start |
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
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
Oops, something went wrong.