-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
55 lines (53 loc) · 2.45 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<title>Parsast Projects</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.7.2/css/all.min.css">
<link rel="stylesheet" href="style.css">
<script src="script.js" defer></script>
</head>
<body>
<header class="header">
<h1 class="logo">Parsast Projects</h1>
<span class="theme-toggle" onclick="toggleTheme()">
<i id="theme-icon" class="fa-solid fa-moon"></i>
</span>
</header>
<div class="content">
<div class="projects-grid">
<div class="project-card" onclick="redirectTo('https://github.com/Parsa307/AmongUsMenu')">
<h2 class="menu-links">Among Us Menu</h2>
<p class="project-info">Yet Another Mod Menu for Among Us.</p>
</div>
<div class="project-card" onclick="redirectTo('https://github.com/Parsa307/FortniteLauncher')">
<h2 class="menu-links">FortniteLauncher</h2>
<p class="project-info">Made for LawinServer.</p>
</div>
<div class="project-card" onclick="redirectTo('https://github.com/Parsa307/Parsast-Hex-Founder')">
<h2 class="menu-links">Parsast Hex Founder</h2>
<p class="project-info">A Game Guardian Lua script designed for Android mod menus.</p>
</div>
<div class="project-card" onclick="redirectTo('https://github.com/Parsa307/Il2CppDumperLinux')">
<h2 class="menu-links">Il2CppDumperLinux</h2>
<p class="project-info">Unity il2cpp reverse engineer.</p>
</div>
<div class="project-card" onclick="redirectTo('https://github.com/Parsa307/MofidBot')">
<h2 class="menu-links">MofidBot</h2>
<p class="project-info">MofidBot is an automated system designed for trading on Mofid Online.</p>
</div>
</div>
</div>
<footer>
<div class="footer-text">
<h3>© 2025 Parsast. All rights reserved.</h3>
</div>
<div class="footer-links">
<a href="https://github.com/Parsa307" class="github-link">
<i class="fa-brands fa-github"></i> GitHub
</a>
</div>
</footer>
</body>
</html>