Skip to content

Commit

Permalink
Merge branch 'main' into pointer
Browse files Browse the repository at this point in the history
  • Loading branch information
jayanththalla authored Jun 3, 2024
2 parents 7272d2c + 5897475 commit e5ac1a8
Show file tree
Hide file tree
Showing 7 changed files with 1,524 additions and 6 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/CommentOnIssueClose.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: Comment on Issue Close

on:
issues:
types: [closed]

jobs:
comment:
runs-on: ubuntu-latest

steps:
- name: Comment on Closed Issue
uses: actions/github-script@v3
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
script: |
const response = await github.issues.createComment({
owner: context.repo.owner,
repo: context.repo.repo,
issue_number: context.issue.number,
body: `
Thank you for your contribution! If you have any questions or need further assistance, feel free to reach out to us on our Discord server: [Discord](https://discord.gg/rZb46cCMmK). We have separate channels for all projects. Happy coding! 🚀
Connect with us on social media:
- **GitHub**: [ChromeGaming](https://github.com/ChromeGaming)
- **LinkedIn**: [ChromeGaming](https://www.linkedin.com/company/chromegaming)
- **Instagram**: [@chromegamingon](https://www.instagram.com/chromegamingon/)
`
});
console.log(response);
68 changes: 68 additions & 0 deletions 404.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,68 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>404:Page not found</title>
<link rel="icon" type="image/png" href="img/favicon-32x32.png">
</head>
<style>
body{
margin: 0;
padding: 0;
font-family: Arial, sans-serif;
background-color: #000;
}
.center {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
height: 90vh;

}
.pic{
width: 700px;
height: 700px;
animation: updown 2s ease-in-out infinite alternate;
}
@keyframes updown {
from{
transform: translateY(0);
}
to{
transform: translateY(20px);
}
}
a{
text-decoration: none;
color: #fff;
}
.btn{
position: absolute;
padding: 10px 20px;
background-color: #1d82d5;
color: #fff;
border-radius: 5px;
font-size: 20px;
font-weight: bold;
border: none;
top: 600px;
}
@media screen and (max-width: 600px) {
.pic{
width: 300px;
height: 300px;
}
.btn{
top: 400px;
}
}
</style>
<body>
<div class="center">
<img src="img/404.png" alt="404 pic" class="pic">
<button class="btn"><a href="index.html">Home</a></button>
</div>
</body>
</html>
Binary file added img/404.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
7 changes: 7 additions & 0 deletions img/home-button-svgrepo-com.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit e5ac1a8

Please sign in to comment.