-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
119 lines (109 loc) · 5.19 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>xzurru</title>
<link rel="stylesheet" href="./assets/css/styles.css">
<link rel="icon" type="image/png" href="./assets/images/imgs/mainicon.png">
</head>
<body>
<div class="container">
<button id="theme-toggle" class="toggle-theme">
<img id="theme-icon" src="./assets/images/icons/sun.png" alt="Toggle Theme">
</button>
<div class="placeholder-image">
<img src="./assets/images/gifimg/xzurrugif.gif" alt="xzurrugif">
</div>
<header>
<h1>xzurru</h1>
<h2>Full-Stack Developer</h2>
<p>I create projects that inspire and solve real-world problems. Building with creativity and precision.</p>
</header>
<section class="skills-section">
<h2>Skills</h2>
<div class="skills">
<div class="skill"><img src="./assets/images/skillpics/python.png" alt="Python"></div>
<div class="skill"><img src="./assets/images/skillpics/html5.png" alt="HTML"></div>
<div class="skill"><img src="./assets/images/skillpics/css.jpg" alt="CSS"></div>
<div class="skill"><img src="./assets/images/skillpics/sass.png" alt="SCSS"></div>
<div class="skill"><img src="./assets/images/skillpics/git.png" alt="Git"></div>
<div class="skill"><img src="./assets/images/skillpics/sql.png" alt="SQL"></div>
<div class="skill"><img src="./assets/images/skillpics/javascript.webp" alt="JavaScript"></div>
<div class="skill"><img src="./assets/images/skillpics/java.png" alt="Java"></div>
</div>
</section>
<section class="projects-section">
<h2><strong>Projects & Experiences</strong></h2>
<div class="projects">
<div class="project">
<h3>MoveX</h3>
<h2>2025 Jan</h2>
<p>Is a very cool app for fitness and MMA boxing.</p>
<a href="https://movex.dev"><strong>MoveX</strong></a>
</div>
<div class="project">
<h3>ZURRUMOD</h3>
<h2>2024 Dec</h2>
<p>Zurrumod is my favorite project.</p>
<a href="https://zurrumod.dev"><strong>zurrumod.dev</strong></a>
</div>
<div class="project">
<h3>ZURRUADMIN</h3>
<h2>2024 Dec</h2>
<p>Zurruadmin is a Discord bot with 100+ features.</p>
</div>
<div class="project">
<h3>HAZESMP</h3>
<h2>2021 Mar</h2>
<p>My first project, a Minecraft SMP server (open-source).</p>
</div>
</div>
</section>
<section class="contact-section">
<h2>Contact Me</h2>
<div class="contact">
<a href="https://discord.gg/zurrumod"><img src="./assets/images/imgs/discord.png" alt="Discord"></a>
<a href="https://github.com/xzurru"><img src="./assets/images/imgs/github.png" alt="GitHub"></a>
<a href="mailto:[email protected]"><img src="./assets/images/imgs/mail.png" alt="Mail"></a>
</div>
</section>
<footer>
<p>© 2025 xzurru. All rights reserved.</p>
</footer>
</div>
<script src="assets/scripts/script.js"></script>
<script>
document.addEventListener("DOMContentLoaded", function () {
const themeToggle = document.getElementById("theme-toggle");
const themeIcon = document.getElementById("theme-icon");
// Richtige Bildpfade prüfen!
const sunIcon = "./assets/images/imgs/sun.png";
const moonIcon = "./assets/images/imgs/moon.png";
// Prüfe, ob Dark Mode gespeichert ist
if (localStorage.getItem("dark-mode") === "enabled") {
document.body.classList.add("dark-mode");
themeIcon.src = moonIcon;
themeIcon.alt = "Switch to Light Mode";
} else {
document.body.classList.remove("dark-mode");
themeIcon.src = sunIcon;
themeIcon.alt = "Switch to Dark Mode";
}
// Event für das Umschalten
themeToggle.addEventListener("click", function () {
document.body.classList.toggle("dark-mode");
if (document.body.classList.contains("dark-mode")) {
themeIcon.src = moonIcon;
themeIcon.alt = "Switch to Light Mode";
localStorage.setItem("dark-mode", "enabled");
} else {
themeIcon.src = sunIcon;
themeIcon.alt = "Switch to Dark Mode";
localStorage.setItem("dark-mode", "disabled");
}
});
});
</script>
</body>
</html>