-
-
Notifications
You must be signed in to change notification settings - Fork 3.7k
mine.js.org #9729
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
mine.js.org #9729
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
mine.is-a.dev |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2023,7 +2023,7 @@ | |
"mimic": "500tech.github.io/mimic", | ||
"mina": "centuryuna.github.io/mina", | ||
"mindyourtime": "michaloslav.github.io/Mind-Your-Time", | ||
"mine": "minenode.github.io", | ||
"minehutsupport": "baibeebambi.github.io/minehutsupport", | ||
"minerva-ui": "cname.vercel-dns.com", // noCF | ||
"minesweeper": "derflatulator.github.io/minesweeper", | ||
|
@@ -3671,6 +3671,7 @@ | |
"xatom": "xatomteam.github.io/docs", | ||
"xchart": "cname.vercel-dns.com", // noCF | ||
"xdtoast": "mininxd.github.io/xdtoast", | ||
"mine": "unique-error.github.io/mine", | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. As the CI error notes, entries need to be added in alphabetical order. Also, |
||
"xen": "hosting.gitbook.com", | ||
"xendb": "notmarx.github.io/Xen.db", | ||
"xhemj": "xhemj.now.sh", // noCF | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Please remove this file, website files like |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,81 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"/> | ||
<title>Gemini's Zoom Site</title> | ||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css"/> | ||
<style> | ||
body { | ||
margin: 0; | ||
padding: 0; | ||
height: 100vh; | ||
background: url('https://chat.openai.com/mnt/data/gemini-bg.jpg') no-repeat center center/cover; | ||
font-family: 'Poppins', sans-serif; | ||
display: flex; | ||
justify-content: center; | ||
align-items: center; | ||
animation: zoomIn 20s ease-in-out infinite alternate; | ||
} | ||
|
||
@keyframes zoomIn { | ||
0% { | ||
background-size: 100%; | ||
} | ||
100% { | ||
background-size: 110%; | ||
} | ||
} | ||
|
||
.click-button { | ||
display: flex; | ||
align-items: center; | ||
gap: 15px; | ||
padding: 18px 40px; | ||
font-size: 22px; | ||
color: #fff; | ||
background: linear-gradient(to right, #00c6ff, #0072ff); | ||
border: none; | ||
border-radius: 50px; | ||
cursor: pointer; | ||
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3); | ||
transition: all 0.3s ease; | ||
position: relative; | ||
overflow: hidden; | ||
} | ||
|
||
.click-button:hover { | ||
transform: scale(1.05); | ||
background: linear-gradient(to right, #0072ff, #00c6ff); | ||
} | ||
|
||
.click-button i { | ||
font-size: 26px; | ||
} | ||
</style> | ||
</head> | ||
<body> | ||
|
||
<!-- Background Audio --> | ||
<audio autoplay loop> | ||
<source src="https://chat.openai.com/mnt/data/BAGHEERA%20%20SHIVA%20STOTRA%20VIDEO%20SONG%20%20Sriimurali%20&%20Rukmini%20%20Ajaneesh%20%20Dr.Suri%20%20Hombale%20Films.mp3" type="audio/mpeg"> | ||
</audio> | ||
|
||
<button class="click-button" onclick="playAndOpen()"> | ||
<i class="fas fa-arrow-circle-right"></i> Go to Website | ||
</button> | ||
|
||
<audio id="clickSound" src="https://assets.mixkit.co/sfx/preview/mixkit-click-melodic-tone-1129.mp3"></audio> | ||
|
||
<script> | ||
function playAndOpen() { | ||
const sound = document.getElementById('clickSound'); | ||
sound.play(); | ||
setTimeout(() => { | ||
window.open('https://mine.is-a.dev', '_blank'); | ||
}, 300); | ||
} | ||
</script> | ||
|
||
</body> | ||
</html> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please remove this file, the
CNAME
file should be in your GitHub Pages project, not here.Also, this is JS.org, not is-a.dev.