Skip to content
This repository was archived by the owner on Nov 1, 2025. It is now read-only.

Commit 2b29f6b

Browse files
authored
Add files via upload
1 parent ade5fce commit 2b29f6b

File tree

3 files changed

+66
-10
lines changed

3 files changed

+66
-10
lines changed

index.html

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -38,13 +38,6 @@
3838
alert("IP berhasil disalin: leftycraft.my.id");
3939
});
4040
}
41-
42-
function scrollToSupport() {
43-
const supportSection = document.getElementById("support");
44-
if (supportSection) {
45-
supportSection.scrollIntoView({ behavior: "smooth" });
46-
}
47-
}
4841
</script>
4942
</head>
5043
<body>
@@ -59,7 +52,7 @@
5952
<nav>
6053
<a href="#" onclick="window.open('https://discord.gg/pY6QrjEshm', '_blank')">Discord</a>
6154
<a href="ranks.html">Ranks</a>
62-
<a href="#" onclick="scrollToSupport()">Support</a>
55+
<a href="support.html">Support</a>
6356
<a href="#" class="btn-yellow" onclick="copyIP()">Join Now</a>
6457
</nav>
6558
</header>

ranks.html

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,13 @@
88
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;700&display=swap" rel="stylesheet"/>
99
<link rel="stylesheet" href="style.css"/>
1010
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css"/>
11+
<script>
12+
function copyIP() {
13+
navigator.clipboard.writeText("leftycraft.my.id").then(function () {
14+
alert("IP berhasil disalin: leftycraft.my.id");
15+
});
16+
}
17+
</script>
1118
</head>
1219
<body>
1320

@@ -21,7 +28,7 @@
2128
<nav>
2229
<a href="#" onclick="window.open('https://discord.gg/pY6QrjEshm', '_blank')">Discord</a>
2330
<a href="ranks.html">Ranks</a>
24-
<a href="#" onclick="scrollToSupport()">Support</a>
31+
<a href="support.html">Support</a>
2532
<a href="#" class="btn-yellow" onclick="copyIP()">Join Now</a>
2633
</nav>
2734
</header>
@@ -135,7 +142,7 @@ <h3><i class="fa-solid fa-gem"></i> Rank Luxury</h3>
135142
<!-- Rank Luxury+ -->
136143
<div class="rank-card">
137144
<h3><i class="fa-solid fa-crown"></i> Rank Luxury+</h3>
138-
<div class="harga-asli">Rp319.999</div>
145+
<div class="harga-asli"><s>Rp319.999</s></div>
139146
<div class="harga-bersih">Rp249.999</div>
140147
<ul>
141148
<li>🌈 /chatcolor</li>

support.html

Lines changed: 56 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,56 @@
1+
<!DOCTYPE html>
2+
<html lang="id">
3+
<head>
4+
<meta charset="UTF-8" />
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
6+
<link rel="icon" type="image/png" href="logo.png">
7+
<title>Support - LeftyCraft</title>
8+
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;700&display=swap" rel="stylesheet"/>
9+
<link rel="stylesheet" href="style.css"/>
10+
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css"/>
11+
<script>
12+
function copyIP() {
13+
navigator.clipboard.writeText("leftycraft.my.id").then(function() {
14+
alert("IP berhasil disalin: leftycraft.my.id");
15+
});
16+
}
17+
</script>
18+
</head>
19+
<body>
20+
21+
<!-- Navbar -->
22+
<header class="header">
23+
<div class="logo">
24+
<a href="index.html" style="display: flex; align-items: center; text-decoration: none; color: inherit;">
25+
<img src="logo.png" alt="LeftyCraft Logo">
26+
<span>LeftyCraft</span>
27+
</a>
28+
</div>
29+
<nav>
30+
<a href="#" onclick="window.open('https://discord.gg/pY6QrjEshm', '_blank')">Discord</a>
31+
<a href="ranks.html">Ranks</a>
32+
<a href="support.html">Support</a>
33+
<a href="#" class="btn-yellow" onclick="copyIP()">Join Now</a>
34+
</nav>
35+
</header>
36+
37+
<!-- Support Section -->
38+
<section class="support-section">
39+
<h2>Hubungi Support Kami</h2>
40+
<p>Pilih platform yang ingin kamu gunakan untuk menghubungi tim support:</p>
41+
<div class="btn-row">
42+
<a href="https://discord.gg/pY6QrjEshm" target="_blank" class="btn-outline">
43+
<i class="fa-brands fa-discord"></i> Discord
44+
</a>
45+
<a href="https://chat.whatsapp.com/BQBZzXMyPVoDP5NZ6NvYUf" target="_blank" class="btn-outline">
46+
<i class="fa-brands fa-whatsapp"></i> WhatsApp
47+
</a>
48+
</div>
49+
</section>
50+
51+
<footer>
52+
<p>© 2025 LeftyCraft. All rights reserved.</p>
53+
</footer>
54+
55+
</body>
56+
</html>

0 commit comments

Comments
 (0)