first commit
This commit is contained in:
254
css/style.css
Normal file
254
css/style.css
Normal file
@ -0,0 +1,254 @@
|
||||
@font-face {
|
||||
font-family: 'Minecraft';
|
||||
src: url('https://fontmeme.com/fonts/minecraft-font/') format('truetype');
|
||||
font-weight: normal;
|
||||
font-style: normal;
|
||||
}
|
||||
body {
|
||||
background: linear-gradient(135deg, #0b0f2b, #1a2249);
|
||||
font-family: 'Roboto', 'Verdana', sans-serif;
|
||||
color: #e0e7ff;
|
||||
overflow-x: hidden;
|
||||
position: relative;
|
||||
margin: 0;
|
||||
min-height: 100vh;
|
||||
scroll-behavior: smooth;
|
||||
}
|
||||
.minecraft-font {
|
||||
font-family: 'Minecraft', sans-serif;
|
||||
letter-spacing: 0.8px;
|
||||
text-shadow: 0 0 12px rgba(20, 184, 166, 0.7);
|
||||
}
|
||||
.section-bg {
|
||||
background: rgba(10, 17, 40, 0.75);
|
||||
backdrop-filter: blur(20px);
|
||||
border-radius: 24px;
|
||||
border: 1px solid rgba(255, 255, 255, 0.1);
|
||||
box-shadow: 0 6px 25px rgba(0, 0, 0, 0.4), inset 0 0 15px rgba(255, 255, 255, 0.08);
|
||||
transition: transform 0.4s ease, box-shadow 0.4s ease;
|
||||
animation: floatSection 4s ease-in-out infinite;
|
||||
}
|
||||
.section-bg:hover {
|
||||
transform: translateY(-8px);
|
||||
box-shadow: 0 12px 40px rgba(20, 184, 166, 0.4), inset 0 0 20px rgba(255, 255, 255, 0.12);
|
||||
}
|
||||
@keyframes floatSection {
|
||||
0%, 100% { transform: translateY(0); }
|
||||
50% { transform: translateY(-4px); }
|
||||
}
|
||||
.btn-minecraft {
|
||||
background: linear-gradient(45deg, #14b8a6, #3b82f6);
|
||||
background-size: 300% 300%;
|
||||
border: none;
|
||||
color: #fff;
|
||||
text-shadow: 0 0 10px rgba(0, 0, 0, 0.6);
|
||||
border-radius: 14px;
|
||||
padding: 14px 30px;
|
||||
font-weight: 700;
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
transition: transform 0.3s, box-shadow 0.3s;
|
||||
animation: gradientShift 5s ease infinite;
|
||||
}
|
||||
.btn-minecraft::before {
|
||||
content: '';
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: -100%;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
|
||||
transition: left 0.5s;
|
||||
}
|
||||
.btn-minecraft:hover::before {
|
||||
left: 100%;
|
||||
}
|
||||
.btn-minecraft:hover {
|
||||
transform: scale(1.1);
|
||||
box-shadow: 0 8px 30px rgba(20, 184, 166, 0.7);
|
||||
}
|
||||
.btn-minecraft::after {
|
||||
content: '';
|
||||
position: absolute;
|
||||
top: 50%;
|
||||
left: 50%;
|
||||
width: 0;
|
||||
height: 0;
|
||||
background: radial-gradient(circle, rgba(20, 184, 166, 0.5), transparent);
|
||||
opacity: 0;
|
||||
transition: width 0.3s, height 0.3s, opacity 0.3s;
|
||||
transform: translate(-50%, -50%);
|
||||
}
|
||||
.btn-minecraft:hover::after {
|
||||
width: 200px;
|
||||
height: 200px;
|
||||
opacity: 1;
|
||||
}
|
||||
@keyframes gradientShift {
|
||||
0% { background-position: 0% 50%; }
|
||||
50% { background-position: 100% 50%; }
|
||||
100% { background-position: 0% 50%; }
|
||||
}
|
||||
.hero-bg {
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
min-height: 600px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
border-radius: 24px;
|
||||
will-change: transform;
|
||||
}
|
||||
.hero-bg iframe {
|
||||
position: absolute;
|
||||
top: 50%;
|
||||
left: 50%;
|
||||
width: 120%;
|
||||
height: 120%;
|
||||
min-height: 600px;
|
||||
transform: translate(-50%, -50%) scale(1.2);
|
||||
object-fit: cover;
|
||||
z-index: 1;
|
||||
border: none;
|
||||
pointer-events: none;
|
||||
will-change: transform;
|
||||
backface-visibility: hidden;
|
||||
}
|
||||
.hero-bg img {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
object-fit: cover;
|
||||
z-index: 0;
|
||||
display: none;
|
||||
}
|
||||
.hero-bg::before {
|
||||
content: '';
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.6));
|
||||
z-index: 2;
|
||||
}
|
||||
.hero-content {
|
||||
position: relative;
|
||||
z-index: 3;
|
||||
text-align: center;
|
||||
padding: 4rem;
|
||||
animation: scaleIn 1.2s ease-out;
|
||||
}
|
||||
.header-content {
|
||||
animation: scaleIn 1s ease-out;
|
||||
}
|
||||
@keyframes scaleIn {
|
||||
from { opacity: 0; transform: scale(0.95); }
|
||||
to { opacity: 1; transform: scale(1); }
|
||||
}
|
||||
.feature-card {
|
||||
background: rgba(15, 23, 50, 0.85);
|
||||
backdrop-filter: blur(15px);
|
||||
border-radius: 18px;
|
||||
padding: 2rem;
|
||||
border: 1px solid rgba(255, 255, 255, 0.06);
|
||||
transition: transform 0.4s ease, box-shadow 0.4s ease;
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
animation: floatSection 5s ease-in-out infinite;
|
||||
}
|
||||
.feature-card:hover {
|
||||
transform: translateY(-12px) scale(1.03);
|
||||
box-shadow: 0 12px 35px rgba(20, 184, 166, 0.5);
|
||||
}
|
||||
.feature-card::before {
|
||||
content: '';
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
background: radial-gradient(circle at 30% 30%, rgba(20, 184, 166, 0.3), transparent);
|
||||
opacity: 0;
|
||||
transition: opacity 0.4s;
|
||||
}
|
||||
.feature-card:hover::before {
|
||||
opacity: 1;
|
||||
}
|
||||
.particle {
|
||||
position: absolute;
|
||||
width: 5px;
|
||||
height: 5px;
|
||||
background: linear-gradient(45deg, #14b8a6, #60a5fa);
|
||||
border-radius: 50%;
|
||||
animation: float 12s infinite ease-in-out;
|
||||
z-index: 0;
|
||||
pointer-events: none;
|
||||
box-shadow: 0 0 15px rgba(20, 184, 166, 0.9);
|
||||
}
|
||||
.particle.large {
|
||||
width: 8px;
|
||||
height: 8px;
|
||||
animation-duration: 14s;
|
||||
}
|
||||
@keyframes float {
|
||||
0%, 100% { transform: translateY(0) translateX(0); opacity: 0.2; }
|
||||
50% { transform: translateY(-60px) translateX(25px); opacity: 0.8; }
|
||||
}
|
||||
.header-bg {
|
||||
background: linear-gradient(180deg, rgba(10, 17, 40, 0.95), rgba(5, 15, 35, 0.95));
|
||||
border-bottom: 1px solid rgba(255, 255, 255, 0.12);
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
}
|
||||
footer a {
|
||||
color: #2dd4bf;
|
||||
transition: color 0.3s, text-shadow 0.3s;
|
||||
}
|
||||
footer a:hover {
|
||||
color: #60a5fa;
|
||||
text-shadow: 0 0 12px rgba(96, 165, 250, 0.7);
|
||||
}
|
||||
@media (max-width: 768px) {
|
||||
.hero-bg {
|
||||
min-height: 500px;
|
||||
}
|
||||
.hero-bg iframe {
|
||||
min-height: 500px;
|
||||
}
|
||||
.btn-minecraft {
|
||||
padding: 12px 26px;
|
||||
font-size: 0.9rem;
|
||||
}
|
||||
.minecraft-font.text-5xl {
|
||||
font-size: 2.5rem;
|
||||
}
|
||||
.minecraft-font.text-4xl {
|
||||
font-size: 2rem;
|
||||
}
|
||||
.minecraft-font.text-3xl {
|
||||
font-size: 1.75rem;
|
||||
}
|
||||
.feature-card {
|
||||
padding: 1.5rem;
|
||||
}
|
||||
}
|
||||
@media (max-width: 640px) {
|
||||
.hero-bg {
|
||||
min-height: 400px;
|
||||
}
|
||||
.hero-bg iframe {
|
||||
min-height: 400px;
|
||||
}
|
||||
.minecraft-font.text-5xl {
|
||||
font-size: 2rem;
|
||||
}
|
||||
.minecraft-font.text-4xl {
|
||||
font-size: 1.75rem;
|
||||
}
|
||||
.minecraft-font.text-3xl {
|
||||
font-size: 1.5rem;
|
||||
}
|
||||
}
|
BIN
favicon.ico
Normal file
BIN
favicon.ico
Normal file
Binary file not shown.
After Width: | Height: | Size: 1.4 KiB |
BIN
img/my-mc-realms.webp
Normal file
BIN
img/my-mc-realms.webp
Normal file
Binary file not shown.
After Width: | Height: | Size: 124 KiB |
157
index.html
Normal file
157
index.html
Normal file
@ -0,0 +1,157 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>My-MC.Link - Free Minecraft Hosting</title>
|
||||
<link rel="icon" href="https://minecraft.wiki/images/Favicon.png" type="image/png">
|
||||
<script src="https://cdn.tailwindcss.com"></script>
|
||||
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;700;900&display=swap" rel="stylesheet">
|
||||
<link href="./mc/css/style.css" rel="stylesheet">
|
||||
<link href="./mc/favicon.ico" rel="icon" type="image/x-icon">
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<!-- Particle Effects -->
|
||||
<div class="particle" style="left: 10%; top: 20%; animation-delay: 0s;"></div>
|
||||
<div class="particle large" style="left: 30%; top: 50%; animation-delay: 2s;"></div>
|
||||
<div class="particle" style="left: 50%; top: 30%; animation-delay: 4s;"></div>
|
||||
<div class="particle large" style="left: 70%; top: 60%; animation-delay: 6s;"></div>
|
||||
<div class="particle" style="left: 20%; top: 80%; animation-delay: 8s;"></div>
|
||||
|
||||
<header class="header-bg py-16 text-center relative z-10">
|
||||
<div class="header-content flex items-center justify-between max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
|
||||
<div>
|
||||
<h1
|
||||
class="text-5xl minecraft-font bg-clip-text text-transparent bg-gradient-to-r from-teal-400 to-blue-500">
|
||||
My-MC.Link</h1>
|
||||
<p class="text-lg mt-4 opacity-90 tracking-wide font-medium">Futuristic Free Minecraft Hosting</p>
|
||||
</div>
|
||||
<a href="https://panel.my-mc.link" class="btn-minecraft text-base self-center" target="_blank">Panel</a>
|
||||
</div>
|
||||
</header>
|
||||
|
||||
<main class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 pb-16 relative z-10">
|
||||
<section class="hero-bg mb-12">
|
||||
<iframe id="ytplayer"
|
||||
src="https://www.youtube.com/embed/qLuc8kZty1A?autoplay=1&loop=1&mute=1&controls=0&showinfo=0&rel=0&iv_load_policy=3&playlist=qLuc8kZty1A"
|
||||
frameborder="0" allow="autoplay; loop" allowfullscreen></iframe>
|
||||
<img src="https://minecraft.wiki/images/Panorama_4.png" alt="Minecraft Panorama">
|
||||
<div class="hero-content">
|
||||
<h2
|
||||
class="text-4xl minecraft-font mb-6 bg-clip-text text-transparent bg-gradient-to-r from-teal-400 to-blue-500">
|
||||
Craft Your Ultimate Fabric Server</h2>
|
||||
<p class="text-lg mb-8 max-w-3xl mx-auto opacity-90 leading-relaxed">
|
||||
Host your Minecraft server for free with secure, low-latency P2P connections.<BR>Enjoy encrypted
|
||||
networking, effortless mod management, and cross-platform play.
|
||||
</p>
|
||||
<a href="https://join.my-mc.link" class="btn-minecraft inline-block text-lg" target="_blank">Start Your
|
||||
Journey</a>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<section class="section-bg p-8 sm:p-10 mb-12">
|
||||
<h2
|
||||
class="text-3xl minecraft-font mb-8 text-center bg-clip-text text-transparent bg-gradient-to-r from-teal-400 to-blue-500">
|
||||
What Sets Us Apart</h2>
|
||||
<div class="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-4 gap-6">
|
||||
<div class="feature-card tilt-card">
|
||||
<h3 class="text-xl minecraft-font mb-3 text-teal-400">Secure P2P Networking</h3>
|
||||
<p class="text-sm opacity-90 leading-relaxed">Play with peace of mind using Holesail’s end-to-end
|
||||
encrypted connections, hiding IPs and ports.</p>
|
||||
</div>
|
||||
<div class="feature-card tilt-card">
|
||||
<h3 class="text-xl minecraft-font mb-3 text-teal-400">Flexible Hosting Zero Cost</h3>
|
||||
<p class="text-sm opacity-90 leading-relaxed">Bind your server to any device—PC, localhost, or
|
||||
server—for complete control and portability.</p>
|
||||
</div>
|
||||
<div class="feature-card tilt-card">
|
||||
<h3 class="text-xl minecraft-font mb-3 text-teal-400">Smart Mod Management</h3>
|
||||
<p class="text-sm opacity-90 leading-relaxed">Install and update mods effortlessly with our
|
||||
intuitive bot and powerful REST API.</p>
|
||||
</div>
|
||||
<div class="feature-card tilt-card">
|
||||
<h3 class="text-xl minecraft-font mb-3 text-teal-400">Cross-Platform Play with Geyser</h3>
|
||||
<p class="text-sm opacity-90 leading-relaxed">Connect Java and Bedrock players seamlessly with
|
||||
built-in Geyser support.</p>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<section class="section-bg p-8 sm:p-10 mb-12">
|
||||
<h2
|
||||
class="text-3xl minecraft-font mb-8 text-center bg-clip-text text-transparent bg-gradient-to-r from-teal-400 to-blue-500">
|
||||
My-MC Realms</h2>
|
||||
<p class="text-lg mb-8 max-w-3xl mx-auto opacity-90 leading-relaxed">
|
||||
My-MC Realms is a seamless alternative to Minecraft Realms, allowing you to connect to your Minecraft server directly from the Realms menu without needing the server address<BR><BR>Simply install the MyMcRealms mod within your client, run the <code class="bg-gray-800 text-teal-400 px-1 rounded">/my-mc-link</code> command to register a slot, and access your server with ease.
|
||||
</p>
|
||||
<div class="flex justify-center mb-8">
|
||||
<img src="./mc/img/my-mc-realms.webp"
|
||||
alt="MyMcRealms in action" class="max-w-full rounded-lg shadow-lg">
|
||||
</div>
|
||||
<p class="text-lg max-w-3xl mx-auto opacity-90 leading-relaxed">
|
||||
<strong>Give the mod to your friends</strong><BR>Once installed on your friends clients, they can access your server via the Realms menu.<BR>No More Need For IPs or Ports!
|
||||
</p>
|
||||
</section>
|
||||
|
||||
<section class="section-bg p-8 sm:p-10 mb-12">
|
||||
<h2
|
||||
class="text-3xl minecraft-font mb-8 text-center bg-clip-text text-transparent bg-gradient-to-r from-teal-400 to-blue-500">
|
||||
Power Up with Our API & Libraries</h2>
|
||||
<p class="text-lg mb-8 max-w-3xl mx-auto opacity-90 leading-relaxed">
|
||||
Take control of your Minecraft server like never before with our powerful REST API and MyMCLib libraries! Automate server management, install mods, ban players, send messages, and more with just a few lines of code. Available in JavaScript and Java, our tools make it easy to integrate and customize your server experience.
|
||||
</p>
|
||||
<div class="grid grid-cols-1 sm:grid-cols-2 gap-6 mb-8">
|
||||
<div class="feature-card tilt-card">
|
||||
<h3 class="text-xl minecraft-font mb-3 text-teal-400">Robust REST API</h3>
|
||||
<p class="text-sm opacity-90 leading-relaxed">Manage every aspect of your server programmatically, from starting and stopping to retrieving stats and logs.</p>
|
||||
</div>
|
||||
<div class="feature-card tilt-card">
|
||||
<h3 class="text-xl minecraft-font mb-3 text-teal-400">MyMCLib Libraries</h3>
|
||||
<p class="text-sm opacity-90 leading-relaxed">Simplify API interactions with our JavaScript and Java libraries, designed for developers of all skill levels.</p>
|
||||
</div>
|
||||
</div>
|
||||
<p class="text-lg max-w-3xl mx-auto opacity-90 leading-relaxed">
|
||||
<strong>Ready to code?</strong><BR>Dive into our <a href="https://wiki.my-mc.link/en/api" class="underline text-teal-400 hover:text-blue-400">API documentation</a> and <a href="https://wiki.my-mc.link/en/mymc-lib" class="underline text-teal-400 hover:text-blue-400">MyMCLib guide</a> to start building today!
|
||||
</p>
|
||||
</section>
|
||||
|
||||
<section id="get-started" class="section-bg p-8 sm:p-10 text-center mb-12">
|
||||
<h2
|
||||
class="text-3xl minecraft-font mb-6 bg-clip-text text-transparent bg-gradient-to-r from-teal-400 to-blue-500">
|
||||
Begin Your Adventure</h2>
|
||||
<p class="text-lg mb-8 max-w-2xl mx-auto opacity-90 leading-relaxed">
|
||||
Join our vibrant community, set up your server in minutes, and play with friends across platforms. Free,
|
||||
secure, and crafted for Minecraft fans.
|
||||
</p>
|
||||
<div class="flex justify-center gap-4 flex-wrap">
|
||||
<a href="https://join.my-mc.link" class="btn-minecraft text-base" target="_blank">Join Our Discord</a>
|
||||
<a href="https://wiki.my-mc.link" class="btn-minecraft text-base" target="_blank">Explore the Wiki</a>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<section class="section-bg p-8 sm:p-10 text-center">
|
||||
<h2
|
||||
class="text-3xl minecraft-font mb-6 bg-clip-text text-transparent bg-gradient-to-r from-teal-400 to-blue-500">
|
||||
Beta Phase Notice</h2>
|
||||
<p class="text-lg max-w-3xl mx-auto opacity-90 leading-relaxed">
|
||||
My-MC.Link is in beta, so minor issues may arise. <BR>Please review our
|
||||
<a href="https://my-mc.link/terms.html" class="underline text-teal-400 hover:text-blue-400">Terms of
|
||||
Service</a> and
|
||||
<a href="https://discord.com/guidelines" class="underline text-teal-400 hover:text-blue-400">Discord
|
||||
Rules</a> before getting started.
|
||||
</p>
|
||||
</section>
|
||||
</main>
|
||||
<footer class="bg-gray-900/20 backdrop-filter backdrop-blur-xl py-8 text-center relative z-10">
|
||||
<p class="text-sm opacity-90">© 2025 My-MC.Link. All rights reserved.</p>
|
||||
<p class="text-sm opacity-90 mt-3">
|
||||
Powered by <a href="https://holesail.io" class="underline" target="_blank">Holesail</a> with services
|
||||
donated by <a href="https://raven-scott.fyi" class="underline">SNXRaven</a>
|
||||
</p>
|
||||
</footer>
|
||||
<script src="./mc/js/main.js"></script>
|
||||
</body>
|
||||
|
||||
</html>
|
101
js/main.js
Normal file
101
js/main.js
Normal file
@ -0,0 +1,101 @@
|
||||
// Handle video playback error
|
||||
const iframe = document.getElementById('ytplayer');
|
||||
iframe.onerror = () => {
|
||||
iframe.style.display = 'none';
|
||||
document.querySelector('.hero-bg img').style.display = 'block';
|
||||
};
|
||||
|
||||
// Ensure page loads at the top
|
||||
window.addEventListener('load', () => {
|
||||
window.scrollTo(0, 0);
|
||||
});
|
||||
|
||||
// Scroll animations for sections
|
||||
const sections = document.querySelectorAll('.section-bg');
|
||||
const observer = new IntersectionObserver((entries) => {
|
||||
entries.forEach((entry, index) => {
|
||||
if (entry.isIntersecting) {
|
||||
entry.target.style.transform = 'translateY(0)';
|
||||
entry.target.style.opacity = '1';
|
||||
entry.target.style.transitionDelay = `${index * 0.1}s`;
|
||||
}
|
||||
});
|
||||
}, { threshold: 0.1 });
|
||||
|
||||
sections.forEach(section => {
|
||||
section.style.transform = 'translateY(30px)';
|
||||
section.style.opacity = '0';
|
||||
section.style.transition = 'transform 0.7s ease-out, opacity 0.7s ease-out';
|
||||
observer.observe(section);
|
||||
});
|
||||
|
||||
// Dynamic particle spawning
|
||||
function createParticle() {
|
||||
const particle = document.createElement('div');
|
||||
particle.classList.add('particle');
|
||||
if (Math.random() > 0.6) particle.classList.add('large');
|
||||
particle.style.left = `${Math.random() * 100}%`;
|
||||
particle.style.top = `${Math.random() * 100}%`;
|
||||
particle.style.animationDelay = `${Math.random() * 10}s`;
|
||||
particle.style.animationDuration = `${10 + Math.random() * 8}s`;
|
||||
document.body.appendChild(particle);
|
||||
setTimeout(() => particle.remove(), 18000);
|
||||
}
|
||||
|
||||
setInterval(createParticle, 500);
|
||||
|
||||
// Throttle function to limit scroll event frequency
|
||||
function throttle(fn, wait) {
|
||||
let lastTime = 0;
|
||||
return function (...args) {
|
||||
const now = Date.now();
|
||||
if (now - lastTime >= wait) {
|
||||
fn.apply(this, args);
|
||||
lastTime = now;
|
||||
}
|
||||
};
|
||||
}
|
||||
|
||||
// Parallax effect for fallback image only
|
||||
const hero = document.querySelector('.hero-bg');
|
||||
const heroImg = hero.querySelector('img');
|
||||
window.addEventListener(
|
||||
'scroll',
|
||||
throttle(() => {
|
||||
const scrollPosition = window.pageYOffset;
|
||||
// Apply parallax only to fallback image if iframe is hidden
|
||||
if (heroImg.style.display === 'block') {
|
||||
heroImg.style.transform = `translate(-50%, calc(-50% + ${scrollPosition * 0.3}px)) scale(1.2)`;
|
||||
}
|
||||
}, 16) // ~60fps
|
||||
);
|
||||
|
||||
// Tilt effect for feature cards
|
||||
const tiltCards = document.querySelectorAll('.tilt-card');
|
||||
tiltCards.forEach(card => {
|
||||
card.addEventListener('mousemove', (e) => {
|
||||
const rect = card.getBoundingClientRect();
|
||||
const x = e.clientX - rect.left;
|
||||
const y = e.clientY - rect.top;
|
||||
const centerX = rect.width / 2;
|
||||
const centerY = rect.height / 2;
|
||||
const tiltX = (y - centerY) / 12;
|
||||
const tiltY = (centerX - x) / 12;
|
||||
card.style.transform = `perspective(1200px) rotateX(${tiltX}deg) rotateY(${tiltY}deg)`;
|
||||
});
|
||||
card.addEventListener('mouseleave', () => {
|
||||
card.style.transform = 'perspective(1200px) rotateX(0) rotateY(0)';
|
||||
});
|
||||
});
|
||||
|
||||
// Cursor glow effect for buttons
|
||||
const buttons = document.querySelectorAll('.btn-minecraft');
|
||||
buttons.forEach(button => {
|
||||
button.addEventListener('mousemove', (e) => {
|
||||
const rect = button.getBoundingClientRect();
|
||||
const x = e.clientX - rect.left;
|
||||
const y = e.clientY - rect.top;
|
||||
button.style.setProperty('--x', `${x}px`);
|
||||
button.style.setProperty('--y', `${y}px`);
|
||||
});
|
||||
});
|
574
terms.html
Normal file
574
terms.html
Normal file
@ -0,0 +1,574 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Terms of Service - My-MC.Link</title>
|
||||
<link rel="icon" href="https://minecraft.wiki/images/Favicon.png" type="image/png">
|
||||
<script src="https://cdn.tailwindcss.com"></script>
|
||||
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;700;900&display=swap" rel="stylesheet">
|
||||
<link href="./mc/css/style.css" rel="stylesheet">
|
||||
<link href="./mc/favicon.ico" rel="icon" type="image/x-icon">
|
||||
<style>
|
||||
@font-face {
|
||||
font-family: 'Minecraft';
|
||||
src: url('https://fontmeme.com/fonts/minecraft-font/') format('truetype');
|
||||
font-weight: normal;
|
||||
font-style: normal;
|
||||
}
|
||||
|
||||
.minecraft-font {
|
||||
font-family: 'Minecraft', sans-serif;
|
||||
letter-spacing: 0.8px;
|
||||
text-shadow: 0 0 12px rgba(20, 184, 166, 0.7);
|
||||
}
|
||||
|
||||
@keyframes gradientShift {
|
||||
0% {
|
||||
background-position: 0% 50%;
|
||||
}
|
||||
|
||||
50% {
|
||||
background-position: 100% 50%;
|
||||
}
|
||||
|
||||
100% {
|
||||
background-position: 0% 50%;
|
||||
}
|
||||
}
|
||||
|
||||
.animate-gradient-shift {
|
||||
animation: gradientShift 5s ease infinite;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<!-- Particle Effects -->
|
||||
<div class="particle" style="left: 10%; top: 20%; animation-delay: 0s;"></div>
|
||||
<div class="particle large" style="left: 30%; top: 50%; animation-delay: 2s;"></div>
|
||||
<div class="particle" style="left: 50%; top: 30%; animation-delay: 4s;"></div>
|
||||
<div class="particle large" style="left: 70%; top: 60%; animation-delay: 6s;"></div>
|
||||
<div class="particle" style="left: 20%; top: 80%; animation-delay: 8s;"></div>
|
||||
|
||||
<header class="header-bg py-16 text-center relative z-10">
|
||||
<div class="header-content">
|
||||
<h1
|
||||
class="text-5xl minecraft-font bg-clip-text text-transparent bg-gradient-to-r from-teal-400 to-blue-500">
|
||||
My-MC.Link</h1>
|
||||
</div>
|
||||
</header>
|
||||
|
||||
<main class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 pb-16 relative z-10">
|
||||
<section class="section-bg p-8 sm:p-10 mb-12">
|
||||
<h2
|
||||
class="text-3xl minecraft-font mb-6 text-center bg-clip-text text-transparent bg-gradient-to-r from-teal-400 to-blue-500">
|
||||
Terms of Service</h2>
|
||||
<p class="text-sm opacity-90 mb-6">Last updated: July 1st, 2024</p>
|
||||
<p class="text-sm opacity-90 mb-6">The last update was to add a new rule.</p>
|
||||
|
||||
<h3 class="text-xl minecraft-font mb-4 text-teal-400">Agreement to Terms</h3>
|
||||
<p class="text-sm opacity-90 mb-6 leading-relaxed">
|
||||
These Terms of Use constitute a legally binding agreement made between you, whether personally or on
|
||||
behalf of an entity ("you") and my-mc.link ("Company," "we," "us," or "our"), concerning your access to
|
||||
and use of the <a href="https://my-mc.link">https://my-mc.link</a> website as well as any other media
|
||||
form, media channel, mobile website, community server (Discord) or mobile application related, linked,
|
||||
or otherwise connected thereto (collectively, the "Platform"). You also agree to follow the Discord
|
||||
Terms of Service found here: <a href="https://discord.com/terms">https://discord.com/terms</a> AND The
|
||||
Minecraft EULA <a href="https://www.minecraft.net/en-us/eula">https://www.minecraft.net/en-us/eula</a>.
|
||||
Furthermore, you agree that you allow Bluemap to download and use a Minecraft-client file downloaded
|
||||
from Mojang's servers. This file contains resources that belong to Mojang and you must not redistribute
|
||||
it or do anything else that is not compliant with Mojang's EULA.
|
||||
</p>
|
||||
<p class="text-sm opacity-90 mb-6 leading-relaxed">
|
||||
You agree that by accessing the Platform, you have read, understood, and agreed to be bound by all of
|
||||
these Terms of Use. IF YOU DO NOT AGREE WITH ALL OF THESE TERMS OF USE, THEN YOU ARE EXPRESSLY
|
||||
PROHIBITED FROM USING THE PLATFORM AND YOU MUST DISCONTINUE USE IMMEDIATELY.
|
||||
</p>
|
||||
<p class="text-sm opacity-90 mb-6 leading-relaxed">
|
||||
Supplemental terms and conditions or documents that may be posted on the Platform from time to time are
|
||||
hereby expressly incorporated herein by reference. We reserve the right, in our sole discretion, to make
|
||||
changes or modifications to these Terms of Use at any time and for any reason. We will alert you about
|
||||
any changes by updating the "Last updated" date of these Terms of Use, and you waive any right to
|
||||
receive specific notice of each such change. Please ensure that you check the applicable Terms every
|
||||
time you use our Platform so that you understand which Terms apply. You will be subject to, and will be
|
||||
deemed to have been made aware of and to have accepted, the changes in any revised Terms of Use by your
|
||||
continued use of the Platform after the date such revised Terms of Use are posted.
|
||||
</p>
|
||||
<p class="text-sm opacity-90 mb-6 leading-relaxed">
|
||||
The information provided on the Platform is not intended for distribution to or use by any person or
|
||||
entity in any jurisdiction or country where such distribution or use would be contrary to law or
|
||||
regulation or which would subject us to any registration requirement within such jurisdiction or
|
||||
country. Accordingly, those persons who choose to access the Platform from other locations do so on
|
||||
their own initiative and are solely responsible for compliance with local laws, if and to the extent
|
||||
local laws are applicable.
|
||||
</p>
|
||||
<p class="text-sm opacity-90 mb-6 leading-relaxed">
|
||||
The Platform is not tailored to comply with industry-specific regulations (Health Insurance Portability
|
||||
and Accountability Act (HIPAA), Federal Information Security Management Act (FISMA), etc.), so if your
|
||||
interactions would be subjected to such laws, you may not use this Platform. You may not use the
|
||||
Platform in a way that would violate the Gramm-Leach-Bliley Act (GLBA).
|
||||
</p>
|
||||
<p class="text-sm opacity-90 mb-6 leading-relaxed">
|
||||
The Platform is intended for users who are at least 13 years of age. All users who are minors in the
|
||||
jurisdiction in which they reside (generally under the age of 18) must have the permission of, and be
|
||||
directly supervised by, their parent or guardian to use the Platform. If you are a minor, you must have
|
||||
your parent or guardian read and agree to these Terms of Use prior to you using the Platform.
|
||||
</p>
|
||||
<p class="text-sm opacity-90 mb-6 leading-relaxed">
|
||||
In Georgia, The Platform is intended for users who are at least 16 years of age. All users who are
|
||||
minors in the jurisdiction (generally under the age of 18) must have the permission of, and be directly
|
||||
supervised by, their parent or guardian to use the Platform. If you are a minor, you must have your
|
||||
parent or guardian read and agree to these Terms of Use prior to you using the Platform.
|
||||
</p>
|
||||
|
||||
<h3 class="text-xl minecraft-font mb-4 text-teal-400">Intellectual Property Rights</h3>
|
||||
<p class="text-sm opacity-90 mb-6 leading-relaxed">
|
||||
Unless otherwise indicated, the Platform is our proprietary property and all source code, databases,
|
||||
functionality, software, website designs, audio, video, text, photographs, and graphics on the Platform
|
||||
(collectively, the "Content") and the trademarks, service marks, and logos contained therein (the
|
||||
"Marks") are owned or controlled by us or licensed to us, and are protected by copyright and trademark
|
||||
laws and various other intellectual property rights and unfair competition laws of the United States,
|
||||
international copyright laws, and international conventions. The Content and the Marks are provided on
|
||||
the Platform "AS IS" for your information and personal use only. Except as expressly provided in these
|
||||
Terms of Use, no part of the Platform and no Content or Marks may be copied, reproduced, aggregated,
|
||||
republished, uploaded, posted, publicly displayed, encoded, translated, transmitted, distributed, sold,
|
||||
licensed, or otherwise exploited for any commercial purpose whatsoever, without our express prior
|
||||
written permission.
|
||||
</p>
|
||||
<p class="text-sm opacity-90 mb-6 leading-relaxed">
|
||||
Provided that you are eligible to use the Platform, you are granted a limited license to access and use
|
||||
the Platform and to download or print a copy of any portion of the Content to which you have properly
|
||||
gained access solely for your personal, non-commercial use. We reserve all rights not expressly granted
|
||||
to you in and to the Platform, the Content and the Marks.
|
||||
</p>
|
||||
|
||||
<h3 class="text-xl minecraft-font mb-4 text-teal-400">User Representations</h3>
|
||||
<p class="text-sm opacity-90 mb-6 leading-relaxed">
|
||||
By using the Platform, you represent and warrant that:
|
||||
<ol class="list-decimal ml-6">
|
||||
<li>You have the legal capacity and you agree to comply with these Terms of Use;</li>
|
||||
<li>You are not under the age of 13;</li>
|
||||
<li>You are not a minor in the jurisdiction in which you reside, or if a minor, you have received
|
||||
parental permission to use the Platform;</li>
|
||||
<li>You will not access the Platform through automated or non-human means, whether through a bot,
|
||||
script, or otherwise;</li>
|
||||
<li>You will not use the Platform for any illegal or unauthorized purpose; and</li>
|
||||
<li>Your use of the Platform will not violate any applicable law or regulation.</li>
|
||||
</ol>
|
||||
</p>
|
||||
<p class="text-sm opacity-90 mb-6 leading-relaxed">
|
||||
If you provide any information that is untrue, inaccurate, not current, or incomplete, we have the right
|
||||
to suspend or terminate your account and refuse any and all current or future use of the Platform (or
|
||||
any portion thereof).
|
||||
</p>
|
||||
|
||||
<h3 class="text-xl minecraft-font mb-4 text-teal-400">Prohibited Activities</h3>
|
||||
<p class="text-sm opacity-90 mb-6 leading-relaxed">
|
||||
You may not access or use the Platform for any purpose other than that for which we make the Platform
|
||||
available. The Platform may not be used in connection with any commercial endeavors except those that
|
||||
are specifically endorsed or approved by us.
|
||||
</p>
|
||||
<p class="text-sm opacity-90 mb-6 leading-relaxed">
|
||||
As a user of the Platform, you agree not to:
|
||||
<ol class="list-decimal ml-6">
|
||||
<li>Systematically retrieve data or other content from the Platform to create or compile, directly or
|
||||
indirectly, a collection, compilation, database, or directory without written permission from us.
|
||||
</li>
|
||||
<li>Trick, defraud, or mislead us and other users, especially in any attempt to learn sensitive account
|
||||
information such as user passwords.</li>
|
||||
<li>Circumvent, disable, or otherwise interfere with security-related features of the Platform,
|
||||
including features that prevent or restrict the use or copying of any Content or enforce limitations
|
||||
on the use of the Platform and/or the Content contained therein and/or the creation of alternate
|
||||
accounts to gain more services.</li>
|
||||
<li>Disparage, tarnish, or otherwise harm, in our opinion, us and/or the Platform.</li>
|
||||
<li>Use any information obtained from the Platform in order to harass, abuse, or harm another person.
|
||||
</li>
|
||||
<li>Make improper use of our support services or submit false reports of abuse or misconduct.</li>
|
||||
<li>Use the Platform in a manner inconsistent with any applicable laws or regulations.</li>
|
||||
<li>Engage in unauthorized framing of or linking to the Platform.</li>
|
||||
<li>Upload or transmit (or attempt to upload or to transmit) viruses, Trojan horses, or other material,
|
||||
including excessive use of capital letters and spamming (continuous posting of repetitive text),
|
||||
that interferes with any party’s uninterrupted use and enjoyment of the Platform or modifies,
|
||||
impairs, disrupts, alters, or interferes with the use, features, functions, operation, or
|
||||
maintenance of the Platform.</li>
|
||||
<li>Engage in any automated use of the system, such as using scripts to send comments or messages, or
|
||||
using any data mining, robots, or similar data gathering and extraction tools.</li>
|
||||
<li>Delete the copyright or other proprietary rights notice from any Content.</li>
|
||||
<li>Attempt to impersonate another user or person or use the username of another user.</li>
|
||||
<li>Upload or transmit (or attempt to upload or to transmit) any material that acts as a passive or
|
||||
active information collection or transmission mechanism, including without limitation, clear
|
||||
graphics interchange formats ("gifs"), 1×1 pixels, web bugs, cookies, or other similar devices
|
||||
(sometimes referred to as "spyware" or "passive collection mechanisms" or "pcms").</li>
|
||||
<li>Interfere with, disrupt, or create an undue burden on the Platform or the networks or services
|
||||
connected to the Platform.</li>
|
||||
<li>Harass, annoy, intimidate, or threaten any of our employees or agents engaged in providing any
|
||||
portion of the Platform to you.</li>
|
||||
<li>Attempt to bypass any measures of the Platform designed to prevent or restrict access to the
|
||||
Platform, or any portion of the Platform.</li>
|
||||
<li>Copy or adapt the Platform’s software, including but not limited to Flash, PHP, HTML, JavaScript, or
|
||||
other code.</li>
|
||||
<li>Except as permitted by applicable law, decipher, decompile, disassemble, or reverse engineer any of
|
||||
the software comprising or in any way making up a part of the Platform.</li>
|
||||
<li>Except as may be the result of standard search engine or Internet browser usage, use, launch,
|
||||
develop, or distribute any automated system, including without limitation, any spider, robot, cheat
|
||||
utility, scraper, or offline reader that accesses the Platform, or using or launching any
|
||||
unauthorized script or other software.</li>
|
||||
<li>Use a buying agent or purchasing agent to make purchases on the Platform.</li>
|
||||
<li>Make any unauthorized use of the Platform, including collecting usernames and/or email addresses of
|
||||
users by electronic or other means for the purpose of sending unsolicited email, or creating user
|
||||
accounts by automated means or under false pretenses.</li>
|
||||
<li>Use the Platform as part of any effort to compete with us or otherwise use the Platform and/or the
|
||||
Content for any revenue-generating endeavor or commercial enterprise.</li>
|
||||
<li>"Investigate", "Pentest", "Fork Bomb" or abuse our systems in any way. Including any NETWORK SCANS
|
||||
such as vulnerability scanning.</li>
|
||||
</ol>
|
||||
</p>
|
||||
<p class="text-sm opacity-90 mb-6 leading-relaxed">
|
||||
You also agree that you will:
|
||||
<ol class="list-decimal ml-6">
|
||||
<li>Abstain from using hacking tools, scripts, programs, or code intended for malicious activities,
|
||||
proxies facilitating activity concealment, or any software that may be perceived as harmful or
|
||||
detected as intrusive network traffic. This prohibition extends to encompass DDoS tools, network
|
||||
abuse, and any other form of abusive behavior, including but not limited to phishing attacks,
|
||||
malware dissemination, packet sniffing, unauthorized access attempts, and other actions that
|
||||
compromise the integrity and security of the network or any other network on the internet. Hacking
|
||||
is strictly forbidden.</li>
|
||||
</ol>
|
||||
</p>
|
||||
|
||||
<h3 class="text-xl minecraft-font mb-4 text-teal-400">User Generated Contributions</h3>
|
||||
<p class="text-sm opacity-90 mb-6 leading-relaxed">
|
||||
The Platform may invite you to chat, contribute to, or participate in blogs, message boards, online
|
||||
forums, and other functionality, and may provide you with the opportunity to create, submit, post,
|
||||
display, transmit, perform, publish, distribute, or broadcast content and materials to us or on the
|
||||
Platform, including but not limited to text, writings, video, audio, photographs, graphics, comments,
|
||||
suggestions, or personal information or other material (collectively, "Contributions"). Contributions
|
||||
may be viewable by other users of the Platform and through third-party websites. As such, any
|
||||
Contributions you transmit may be treated as non-confidential and non-proprietary. When you create or
|
||||
make available any Contributions, you thereby represent and warrant that:
|
||||
<ol class="list-decimal ml-6">
|
||||
<li>The creation, distribution, transmission, public display, or performance, and the accessing,
|
||||
downloading, or copying of your Contributions do not and will not infringe the proprietary rights,
|
||||
including but not limited to the copyright, patent, trademark, trade secret, or moral rights of any
|
||||
third party.</li>
|
||||
<li>You are the creator and owner of or have the necessary licenses, rights, consents, releases, and
|
||||
permissions to use and to authorize us, the Platform, and other users of the Platform to use your
|
||||
Contributions in any manner contemplated by the Platform and these Terms of Use.</li>
|
||||
<li>You have the written consent, release, and/or permission of each and every identifiable individual
|
||||
person in your Contributions to use the name or likeness of each and every such identifiable
|
||||
individual person to enable inclusion and use of your Contributions in any manner contemplated by
|
||||
the Platform and these Terms of Use.</li>
|
||||
<li>Your Contributions are not false, inaccurate, or misleading.</li>
|
||||
<li>Your Contributions are not unsolicited or unauthorized advertising, promotional materials, pyramid
|
||||
schemes, chain letters, spam, mass mailings, or other forms of solicitation.</li>
|
||||
<li>Your Contributions are not obscene, lewd, lascivious, filthy, violent, harassing, libelous,
|
||||
slanderous, or otherwise objectionable (as determined by us).</li>
|
||||
<li>Your Contributions do not ridicule, mock, disparage, intimidate, or abuse anyone.</li>
|
||||
<li>Your Contributions are not used to harass or threaten (in the legal sense of those terms) any other
|
||||
person and to promote violence against a specific person or class of people.</li>
|
||||
<li>Your Contributions do not violate any applicable law, regulation, or rule.</li>
|
||||
<li>Your Contributions do not violate the privacy or publicity rights of any third party.</li>
|
||||
<li>Your Contributions do not violate any applicable law concerning child pornography, or otherwise
|
||||
intended to protect the health or well-being of minors.</li>
|
||||
<li>Your Contributions do not include any offensive comments that are connected to race, national
|
||||
origin, gender, sexual preference, or physical handicap.</li>
|
||||
<li>Your Contributions do not otherwise violate, or link to material that violates, any provision of
|
||||
these Terms of Use, or any applicable law or regulation.</li>
|
||||
</ol>
|
||||
</p>
|
||||
<p class="text-sm opacity-90 mb-6 leading-relaxed">
|
||||
Any use of the Platform in violation of the foregoing violates these Terms of Use and may result in,
|
||||
among other things, termination or suspension of your rights to use the Platform.
|
||||
</p>
|
||||
|
||||
<h3 class="text-xl minecraft-font mb-4 text-teal-400">Contribution License</h3>
|
||||
<p class="text-sm opacity-90 mb-6 leading-relaxed">
|
||||
By posting your Contributions to any part of the Platform, you automatically grant, and you represent
|
||||
and warrant that you have the right to grant, to us an unrestricted, unlimited, irrevocable, perpetual,
|
||||
non-exclusive, transferable, royalty-free, fully-paid, worldwide right, and license to host, use, copy,
|
||||
reproduce, disclose, sell, resell, publish, broadcast, retitle, archive, store, cache, publicly perform,
|
||||
publicly display, reformat, translate, transmit, excerpt (in whole or in part), and distribute such
|
||||
Contributions (including, without limitation, your image and voice) for any purpose, commercial,
|
||||
advertising, or otherwise, and to prepare derivative works of, or incorporate into other works, such
|
||||
Contributions, and grant and authorize sublicenses of the foregoing. The use and distribution may occur
|
||||
in any media formats and through any media channels.
|
||||
</p>
|
||||
<p class="text-sm opacity-90 mb-6 leading-relaxed">
|
||||
This license will apply to any form, media, or technology now known or hereafter developed, and includes
|
||||
our use of your name, company name, and franchise name, as applicable, and any of the trademarks,
|
||||
service marks, trade names, logos, and personal and commercial images you provide. You waive all moral
|
||||
rights in your Contributions, and you warrant that moral rights have not otherwise been asserted in your
|
||||
Contributions.
|
||||
</p>
|
||||
<p class="text-sm opacity-90 mb-6 leading-relaxed">
|
||||
We do not assert any ownership over your Contributions. You retain full ownership of all of your
|
||||
Contributions and any intellectual property rights or other proprietary rights associated with your
|
||||
Contributions. We are not liable for any statements or representations in your Contributions provided by
|
||||
you in any area on the Platform. You are solely responsible for your Contributions to the Platform and
|
||||
you expressly agree to exonerate us from any and all responsibility and to refrain from any legal action
|
||||
against us regarding your Contributions.
|
||||
</p>
|
||||
<p class="text-sm opacity-90 mb-6 leading-relaxed">
|
||||
We have the right, in our sole and absolute discretion, (1) to edit, redact, or otherwise change any
|
||||
Contributions; (2) to re-categorize any Contributions to place them in more appropriate locations on the
|
||||
Platform; and (3) to pre-screen or delete any Contributions at any time and for any reason, without
|
||||
notice. We have no obligation to monitor your Contributions.
|
||||
</p>
|
||||
|
||||
<h3 class="text-xl minecraft-font mb-4 text-teal-400">Submissions</h3>
|
||||
<p class="text-sm opacity-90 mb-6 leading-relaxed">
|
||||
You acknowledge and agree that any questions, comments, suggestions, ideas, feedback, or other
|
||||
information regarding the Platform ("Submissions") provided by you to us are non-confidential and shall
|
||||
become our sole property. We shall own exclusive rights, including all intellectual property rights, and
|
||||
shall be entitled to the unrestricted use and dissemination of these Submissions for any lawful purpose,
|
||||
commercial or otherwise, without acknowledgment or compensation to you. You hereby waive all moral
|
||||
rights to any such Submissions, and you hereby warrant that any such Submissions are original with you
|
||||
or that you have the right to submit such Submissions. You agree there shall be no recourse against us
|
||||
for any alleged or actual infringement or misappropriation of any proprietary right in your Submissions.
|
||||
</p>
|
||||
|
||||
<h3 class="text-xl minecraft-font mb-4 text-teal-400">Site Management</h3>
|
||||
<p class="text-sm opacity-90 mb-6 leading-relaxed">
|
||||
We reserve the right, but not the obligation, to:
|
||||
<ol class="list-decimal ml-6">
|
||||
<li>Monitor the Platform for violations of these Terms of Use;</li>
|
||||
<li>Take appropriate legal action against anyone who, in our sole discretion, violates the law or these
|
||||
Terms of Use, including without limitation, reporting such user to law enforcement authorities;</li>
|
||||
<li>In our sole discretion and without limitation, refuse, restrict access to, limit the availability
|
||||
of, or disable (to the extent technologically feasible) any of your Contributions or any portion
|
||||
thereof;</li>
|
||||
<li>In our sole discretion and without limitation, notice, or liability, to remove from the Platform or
|
||||
otherwise disable all files and content that are excessive in size or are in any way burdensome to
|
||||
our systems;</li>
|
||||
<li>Otherwise manage the Platform in a manner designed to protect our rights and property and to
|
||||
facilitate the proper functioning of the Platform.</li>
|
||||
</ol>
|
||||
</p>
|
||||
|
||||
<h3 class="text-xl minecraft-font mb-4 text-teal-400">Privacy Policy</h3>
|
||||
<p class="text-sm opacity-90 mb-6 leading-relaxed">
|
||||
We care about data privacy and security. Please review our Privacy Policy: <a
|
||||
href="#">LinkComingSoon</a>. By using the Platform, you agree to be bound by our Privacy Policy,
|
||||
which is incorporated into these Terms of Use. Please be advised the Platform is hosted in the United
|
||||
States. If you access the Platform from any other region of the world with laws or other requirements
|
||||
governing personal data collection, use, or disclosure that differ from applicable laws in the United
|
||||
States, then through your continued use of the Platform, you are transferring your data to the United
|
||||
States, and you agree to have your data transferred to and processed in the United States. Further, we
|
||||
do not knowingly accept, request, or solicit information from children or knowingly market to children.
|
||||
Therefore, in accordance with the U.S. Children’s Online Privacy Protection Act, if we receive actual
|
||||
knowledge that anyone under the age of 13 has provided personal information to us without the requisite
|
||||
and verifiable parental consent, we will delete that information from the Platform as quickly as is
|
||||
reasonably practical.
|
||||
</p>
|
||||
|
||||
<h3 class="text-xl minecraft-font mb-4 text-teal-400">Term and Termination</h3>
|
||||
<p class="text-sm opacity-90 mb-6 leading-relaxed">
|
||||
These Terms of Use shall remain in full force and effect while you use the Platform. WITHOUT LIMITING
|
||||
ANY OTHER PROVISION OF THESE TERMS OF USE, WE RESERVE THE RIGHT TO, IN OUR SOLE DISCRETION AND WITHOUT
|
||||
NOTICE OR LIABILITY, DENY ACCESS TO AND USE OF THE SITE (INCLUDING BLOCKING CERTAIN IP ADDRESSES), TO
|
||||
ANY PERSON FOR ANY REASON OR FOR NO REASON, INCLUDING WITHOUT LIMITATION FOR BREACH OF ANY
|
||||
REPRESENTATION, WARRANTY, OR COVENANT CONTAINED IN THESE TERMS OF USE OR OF ANY APPLICABLE LAW OR
|
||||
REGULATION. WE MAY TERMINATE YOUR USE OR PARTICIPATION IN THE SITE OR DELETE ANY CONTENT OR INFORMATION
|
||||
THAT YOU POSTED AT ANY TIME, WITHOUT WARNING, IN OUR SOLE DISCRETION.
|
||||
</p>
|
||||
<p class="text-sm opacity-90 mb-6 leading-relaxed">
|
||||
If we terminate or suspend your account for any reason, you are prohibited from registering and creating
|
||||
a new account under your name, a fake or borrowed name, or the name of any third party, even if you may
|
||||
be acting on behalf of the third party. In addition to terminating or suspending your account, we
|
||||
reserve the right to take appropriate legal action, including without limitation pursuing civil,
|
||||
criminal, and injunctive redress.
|
||||
</p>
|
||||
|
||||
<h3 class="text-xl minecraft-font mb-4 text-teal-400">Modifications and Interruptions</h3>
|
||||
<p class="text-sm opacity-90 mb-6 leading-relaxed">
|
||||
We reserve the right to change, modify, or remove the contents of the Platform at any time or for any
|
||||
reason at our sole discretion without notice. However, we have no obligation to update any information
|
||||
on our Platform. We also reserve the right to modify or discontinue all or part of the Platform without
|
||||
notice at any time. We will not be liable to you or any third party for any modification, price change,
|
||||
suspension, or discontinuance of the Platform.
|
||||
</p>
|
||||
<p class="text-sm opacity-90 mb-6 leading-relaxed">
|
||||
We cannot guarantee the Platform will be available at all times. We may experience hardware, software,
|
||||
or other problems or need to perform maintenance related to the Platform, resulting in interruptions,
|
||||
delays, or errors. We reserve the right to change, revise, update, suspend, discontinue, or otherwise
|
||||
modify the Platform at any time or for any reason without notice to you. You agree that we have no
|
||||
liability whatsoever for any loss, damage, or inconvenience caused by your inability to access or use
|
||||
the Platform during any downtime or discontinuance of the Platform. Nothing in these Terms of Use will
|
||||
be construed to obligate us to maintain and support the Platform or to supply any corrections, updates,
|
||||
or releases in connection therewith.
|
||||
</p>
|
||||
|
||||
<h3 class="text-xl minecraft-font mb-4 text-teal-400">Refunds</h3>
|
||||
<p class="text-sm opacity-90 mb-6 leading-relaxed">
|
||||
We take pride in providing high-quality services to our valued customers. However, it is important to
|
||||
note that all sales are final and no refunds will be provided under any circumstances. The provision of
|
||||
digital keys signifies the delivery of services, and it is the customer's responsibility to ensure that
|
||||
they understand the terms of the purchase before proceeding. Our company will not be held responsible
|
||||
for any misunderstandings or dissatisfaction with the services rendered. Please take the time to review
|
||||
the product descriptions and any available information before making your purchase. If you have any
|
||||
questions or concerns about the services, our customer support team would be more than happy to assist
|
||||
you.
|
||||
</p>
|
||||
|
||||
<h3 class="text-xl minecraft-font mb-4 text-teal-400">Governing Law</h3>
|
||||
<p class="text-sm opacity-90 mb-6 leading-relaxed">
|
||||
These Terms of Use and your use of the Platform are governed by and construed in accordance with the
|
||||
laws of the State of Georgia applicable to agreements made and to be entirely performed within the State
|
||||
of Georgia, without regard to its conflict of law principles.
|
||||
</p>
|
||||
|
||||
<h3 class="text-xl minecraft-font mb-4 text-teal-400">Dispute Resolution</h3>
|
||||
<p class="text-sm opacity-90 mb-6 leading-relaxed">
|
||||
You agree to irrevocably submit all disputes related to Terms or the relationship established by this
|
||||
Agreement to the jurisdiction of the Georgia courts. my-mc.link shall also maintain the right to bring
|
||||
proceedings as to the substance of the matter in the courts of the country where you reside or, if these
|
||||
Terms are entered into in the course of your trade or profession, the state of your principal place of
|
||||
business.
|
||||
</p>
|
||||
|
||||
<h3 class="text-xl minecraft-font mb-4 text-teal-400">Corrections</h3>
|
||||
<p class="text-sm opacity-90 mb-6 leading-relaxed">
|
||||
There may be information on the Platform that contains typographical errors, inaccuracies, or omissions,
|
||||
including descriptions, pricing, availability, and various other information. We reserve the right to
|
||||
correct any errors, inaccuracies, or omissions and to change or update the information on the Platform
|
||||
at any time, without prior notice.
|
||||
</p>
|
||||
|
||||
<h3 class="text-xl minecraft-font mb-4 text-teal-400">Disclaimer</h3>
|
||||
<p class="text-sm opacity-90 mb-6 leading-relaxed">
|
||||
THE PLATFORM IS PROVIDED ON AN AS-IS AND AS-AVAILABLE BASIS. YOU AGREE THAT YOUR USE OF THE SITE AND OUR
|
||||
SERVICES WILL BE AT YOUR SOLE RISK. TO THE FULLEST EXTENT PERMITTED BY LAW, WE DISCLAIM ALL WARRANTIES,
|
||||
EXPRESS OR IMPLIED, IN CONNECTION WITH THE SITE AND YOUR USE THEREOF, INCLUDING, WITHOUT LIMITATION, THE
|
||||
IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND NON-INFRINGEMENT. WE MAKE
|
||||
NO WARRANTIES OR REPRESENTATIONS ABOUT THE ACCURACY OR COMPLETENESS OF THE SITE’S CONTENT OR THE CONTENT
|
||||
OF ANY WEBSITES LINKED TO THE SITE AND WE WILL ASSUME NO LIABILITY OR RESPONSIBILITY FOR ANY (1) ERRORS,
|
||||
MISTAKES, OR INACCURACIES OF CONTENT AND MATERIALS, (2) PERSONAL INJURY OR PROPERTY DAMAGE, OF ANY
|
||||
NATURE WHATSOEVER, RESULTING FROM YOUR ACCESS TO AND USE OF THE SITE, (3) ANY UNAUTHORIZED ACCESS TO OR
|
||||
USE OF OUR SECURE SERVERS AND/OR ANY AND ALL PERSONAL INFORMATION AND/OR FINANCIAL INFORMATION STORED
|
||||
THEREIN, (4) ANY INTERRUPTION OR CESSATION OF TRANSMISSION TO OR FROM THE SITE, (5) ANY BUGS, VIRUSES,
|
||||
TROJAN HORSES, OR THE LIKE WHICH MAY BE TRANSMITTED TO OR THROUGH THE SITE BY ANY THIRD PARTY, AND/OR
|
||||
(6) ANY ERRORS OR OMISSIONS IN ANY CONTENT AND MATERIALS OR FOR ANY LOSS OR DAMAGE OF ANY KIND INCURRED
|
||||
AS A RESULT OF THE USE OF ANY CONTENT POSTED, TRANSMITTED, OR OTHERWISE MADE AVAILABLE VIA THE SITE. WE
|
||||
DO NOT WARRANT, ENDORSE, GUARANTEE, OR ASSUME RESPONSIBILITY FOR ANY PRODUCT OR SERVICE ADVERTISED OR
|
||||
OFFERED BY A THIRD PARTY THROUGH THE SITE, ANY HYPERLINKED WEBSITE, OR ANY WEBSITE OR MOBILE APPLICATION
|
||||
FEATURED IN ANY BANNER OR OTHER ADVERTISING, AND WE WILL NOT BE A PARTY TO OR IN ANY WAY BE RESPONSIBLE
|
||||
FOR MONITORING ANY TRANSACTION BETWEEN YOU AND ANY THIRD-PARTY PROVIDERS OF PRODUCTS OR SERVICES. AS
|
||||
WITH THE PURCHASE OF A PRODUCT OR SERVICE THROUGH ANY MEDIUM OR IN ANY ENVIRONMENT, YOU SHOULD USE YOUR
|
||||
BEST JUDGMENT AND EXERCISE CAUTION WHERE APPROPRIATE.
|
||||
</p>
|
||||
|
||||
<h3 class="text-xl minecraft-font mb-4 text-teal-400">Limitations of Liability</h3>
|
||||
<p class="text-sm opacity-90 mb-6 leading-relaxed">
|
||||
IN NO EVENT WILL WE OR OUR DIRECTORS, EMPLOYEES, OR AGENTS BE LIABLE TO YOU OR ANY THIRD PARTY FOR ANY
|
||||
DIRECT, INDIRECT, CONSEQUENTIAL, EXEMPLARY, INCIDENTAL, SPECIAL, OR PUNITIVE DAMAGES, INCLUDING LOST
|
||||
PROFIT, LOST REVENUE, LOSS OF DATA, OR OTHER DAMAGES ARISING FROM YOUR USE OF THE SITE, EVEN IF WE HAVE
|
||||
BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. NOTWITHSTANDING ANYTHING TO THE CONTRARY CONTAINED
|
||||
HEREIN, OUR LIABILITY TO YOU FOR ANY CAUSE WHATSOEVER AND REGARDLESS OF THE FORM OF THE ACTION, WILL AT
|
||||
ALL TIMES BE LIMITED TO $4.99 USD. CERTAIN US STATE LAWS AND INTERNATIONAL LAWS DO NOT ALLOW LIMITATIONS
|
||||
ON IMPLIED WARRANTIES OR THE EXCLUSION OR LIMITATION OF CERTAIN DAMAGES. IF THESE LAWS APPLY TO YOU,
|
||||
SOME OR ALL OF THE ABOVE DISCLAIMERS OR LIMITATIONS MAY NOT APPLY TO YOU, AND YOU MAY HAVE ADDITIONAL
|
||||
RIGHTS.
|
||||
</p>
|
||||
|
||||
<h3 class="text-xl minecraft-font mb-4 text-teal-400">Indemnification</h3>
|
||||
<p class="text-sm opacity-90 mb-6 leading-relaxed">
|
||||
You agree to defend, indemnify, and hold us harmless, including our subsidiaries, affiliates, and all of
|
||||
our respective officers, agents, partners, and employees, from and against any loss, damage, liability,
|
||||
claim, or demand, including reasonable attorneys’ fees and expenses, made by any third party due to or
|
||||
arising out of: (1) your Contributions; (2) use of the Platform; (3) breach of these Terms of Use; (4)
|
||||
any breach of your representations and warranties set forth in these Terms of Use; (5) your violation of
|
||||
the rights of a third party, including but not limited to intellectual property rights; or (6) any overt
|
||||
harmful act toward any other user of the Platform with whom you connected via the Platform.
|
||||
Notwithstanding the foregoing, we reserve the right, at your expense, to assume the exclusive defense
|
||||
and control of any matter for which you are required to indemnify us, and you agree to cooperate, at
|
||||
your expense, with our defense of such claims. We will use reasonable efforts to notify you of any such
|
||||
claim, action, or proceeding which is subject to this indemnification upon becoming aware of it.
|
||||
</p>
|
||||
|
||||
<h3 class="text-xl minecraft-font mb-4 text-teal-400">User Data</h3>
|
||||
<p class="text-sm opacity-90 mb-6 leading-relaxed">
|
||||
We will maintain certain data that you transmit to the Platform for the purpose of managing the
|
||||
performance of the Platform, as well as data relating to your use of the Platform. Although we perform
|
||||
regular routine backups of data, you are solely responsible for all data that you transmit or that
|
||||
relates to any activity you have undertaken using the Platform. You agree that we shall have no
|
||||
liability to you for any loss or corruption of any such data, and you hereby waive any right of action
|
||||
against us arising from any such loss or corruption of such data.
|
||||
</p>
|
||||
|
||||
<h3 class="text-xl minecraft-font mb-4 text-teal-400">Electronic Communications, Transactions, and
|
||||
Signatures</h3>
|
||||
<p class="text-sm opacity-90 mb-6 leading-relaxed">
|
||||
Visiting the Platform, sending us emails, and completing online forms constitute electronic
|
||||
communications. You consent to receive electronic communications, and you agree that all agreements,
|
||||
notices, disclosures, and other communications we provide to you electronically, via email and on the
|
||||
Platform, satisfy any legal requirement that such communication be in writing. YOU HEREBY AGREE TO THE
|
||||
USE OF ELECTRONIC SIGNATURES, CONTRACTS, ORDERS, AND OTHER RECORDS, AND TO ELECTRONIC DELIVERY OF
|
||||
NOTICES, POLICIES, AND RECORDS OF TRANSACTIONS INITIATED OR COMPLETED BY US OR VIA THE SITE. You hereby
|
||||
waive any rights or requirements under any statutes, regulations, rules, ordinances, or other laws in
|
||||
any jurisdiction which require an original signature or delivery or retention of non-electronic records,
|
||||
or to payments or the granting of credits by any means other than electronic means.
|
||||
</p>
|
||||
|
||||
<h3 class="text-xl minecraft-font mb-4 text-teal-400">California Users and Residents</h3>
|
||||
<p class="text-sm opacity-90 mb-6 leading-relaxed">
|
||||
If any complaint with us is not satisfactorily resolved, you can contact the Complaint Assistance Unit
|
||||
of the Division of Consumer Services of the California Department of Consumer Affairs in writing at 1625
|
||||
North Market Blvd., Suite N 112, Sacramento, California 95834 or by telephone at (800) 952-5210 or (916)
|
||||
445-1254.
|
||||
</p>
|
||||
|
||||
<h3 class="text-xl minecraft-font mb-4 text-teal-400">Miscellaneous</h3>
|
||||
<p class="text-sm opacity-90 mb-6 leading-relaxed">
|
||||
These Terms of Use and any policies or operating rules posted by us on the Platform or in respect to the
|
||||
Platform constitute the entire agreement and understanding between you and us. Our failure to exercise
|
||||
or enforce any right or provision of these Terms of Use shall not operate as a waiver of such right or
|
||||
provision. These Terms of Use operate to the fullest extent permissible by law. We may assign any or all
|
||||
of our rights and obligations to others at any time. We shall not be responsible or liable for any loss,
|
||||
damage, delay, or failure to act caused by any cause beyond our reasonable control. If any provision or
|
||||
part of a provision of these Terms of Use is determined to be unlawful, void, or unenforceable, that
|
||||
provision or part of the provision is deemed severable from these Terms of Use and does not affect the
|
||||
validity and enforceability of any remaining provisions. There is no joint venture, partnership,
|
||||
employment or agency relationship created between you and us as a result of these Terms of Use or use of
|
||||
the Platform. You agree that these Terms of Use will not be construed against us by virtue of having
|
||||
drafted them. You hereby waive any and all defenses you may have based on the electronic form of these
|
||||
Terms of Use and the lack of signing by the parties hereto to execute these Terms of Use.
|
||||
</p>
|
||||
|
||||
<h3 class="text-xl minecraft-font mb-4 text-teal-400">Contact Us</h3>
|
||||
<p class="text-sm opacity-90 mb-6 leading-relaxed">
|
||||
In order to resolve a complaint regarding the Platform or to receive further information regarding use
|
||||
of the Platform, please contact us at: <a href="mailto:office@ssh.surf">office@ssh.surf</a>
|
||||
</p>
|
||||
|
||||
<div class="text-center mt-8">
|
||||
|
||||
|
||||
<a href="https://my-mc.link"
|
||||
class="inline-block bg-gradient-to-r from-teal-500 to-blue-500 bg-[length:300%_300%] text-white font-bold text-base py-3.5 px-7 rounded-xl relative overflow-hidden transition-transform duration-300 hover:scale-110 hover:shadow-[0_8px_30px_rgba(20,184,166,0.7)] minecraft-font animate-gradient-shift">
|
||||
Back to Home
|
||||
<span
|
||||
class="absolute inset-0 -left-full bg-gradient-to-r from-transparent via-white/40 to-transparent transition-[left] duration-500 group-hover:left-full"></span>
|
||||
<span
|
||||
class="absolute top-1/2 left-1/2 w-0 h-0 bg-[radial-gradient(circle,rgba(20,184,166,0.5),transparent)] opacity-0 transition-all duration-300 group-hover:w-[200px] group-hover:h-[200px] group-hover:opacity-100 -translate-x-1/2 -translate-y-1/2"></span>
|
||||
</a>
|
||||
|
||||
|
||||
</div>
|
||||
</section>
|
||||
</main>
|
||||
|
||||
<footer class="bg-gray-900/20 backdrop-filter backdrop-blur-xl py-8 text-center relative z-10">
|
||||
<p class="text-sm opacity-90">© 2025 My-MC.Link. All rights reserved.</p>
|
||||
<p class="text-sm opacity-90 mt-3">
|
||||
Powered by <a href="https://holesail.io" class="underline">Holesail</a> with services donated by <a
|
||||
href="https://raven-scott.fyi" class="underline">SNXRaven</a>
|
||||
</p>
|
||||
</footer>
|
||||
|
||||
<script src="./mc/js/main.js"></script>
|
||||
|
||||
</body>
|
||||
|
||||
</html>
|
Reference in New Issue
Block a user