Skip to content

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

Closed
wants to merge 3 commits into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CNAME
Copy link
Member

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.

Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
mine.is-a.dev
1 change: 1 addition & 0 deletions cnames_active.js
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",

Check failure on line 2026 in cnames_active.js

GitHub Actions / validate

Expected: ` "mine": "unique-error.github.io/mine",` Found: ` "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",

Check failure on line 3674 in cnames_active.js

GitHub Actions / validate

Expected no line, but found ` "mine": "unique-error.github.io/mine",`
Copy link
Member

Choose a reason for hiding this comment

The 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, mine.js.org is already in use by someone else, so you will need their permission in this pull request to change it to be your page.

"xen": "hosting.gitbook.com",
"xendb": "notmarx.github.io/Xen.db",
"xhemj": "xhemj.now.sh", // noCF
81 changes: 81 additions & 0 deletions index.html
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please remove this file, website files like index.html should be in your GitHub Pages project, not here.

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>