-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
146 lines (140 loc) · 4.5 KB
/
index.html
File metadata and controls
146 lines (140 loc) · 4.5 KB
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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Luau</title>
<link rel="stylesheet" href="style.css" />
<link rel="icon" type="image/x-icon" href="img/logo.png" sizes="16x16" />
<script src="main.js" defer></script>
</head>
<body>
<header class="header">
<div class="logo">
<img class="logo-img" src="img/logo.png" alt="Luau Logo" />
</div>
<nav class="menu">
<ul>
<li><a href="#abt">About</a></li>
<li><a href="#proj">Projects</a></li>
<li><a href="#donate">Donations</a></li>
<li><a href="#contact">Contacts</a></li>
</ul>
</nav>
</header>
<hr />
<main class="container">
<section id="abt" class="about">
<h1>
<img
src="img/about.svg"
width="20"
height="20"
class="section-icon"
alt="section-icon"
/>
About
</h1>
<p>
We are a team of dedicated Luau developers with years of experience in
enhancing your Roblox gaming experience. We specialize in creating
high-quality, reliable, and safe scripts and tools to give you an edge
in your favorite games.
</p>
<p>
Our mission is to empower Roblox players with cutting-edge scripts
that push the boundaries of what's possible. We believe in the power
of FOSS (Free and open-source software) and welcome contributions from
the community. Everyone is free to contribute to our projects.
</p>
<p>
Using Luau, the powerful scripting language of Roblox, our skilled
developers craft effective and undetectable scripts to ensure your
account's safety while you enjoy our tools.
</p>
</section>
<img class="divider" src="img/divider.png" alt="Divider" />
<section id="proj" class="proj">
<h1>
<img
src="img/projects.png"
width="20"
height="20"
class="section-icon"
alt="section-icon"
/>
Projects
</h1>
</section>
<div>
<div id="projects" class="projects"></div>
</div>
<img class="divider" src="img/divider.png" alt="Divider" />
<section id="donate" class="donations">
<h1>
<img
src="img/donation.png"
width="20"
height="20"
class="section-icon"
alt="section-icon"
/>
Donations
</h1>
<p>
If our script has been helpful to you, please click "⭐ Star" in the
upper right corner of the page to show your support. Your stars and
donations mean a lot to us!
</p>
<p>
We deeply appreciate all donations. Your support helps us improve our
products faster and create better tools for everyone. Thank you for
considering a donation!
</p>
<div class="donate-img">
<a href="https://ko-fi.com/drainchurch">
<img
class="qr"
src="img/qr.png"
style="border-radius: 10px"
alt="QR Code"
/></a>
</div>
</section>
<img class="divider" src="img/divider.png" alt="Divider" />
<section id="contact" class="contacts">
<h1>
<img
src="img/contact.png"
width="20"
height="20"
class="section-icon"
alt="section-icon"
/>
Contacts
</h1>
<div class="discord">
<a href="https://discord.gg/wx4ThpAsmw">
<img class="disc-png" src="img/discord.svg" alt="icon" />
</a>
<a class="discord-link" href="https://discord.gg/wx4ThpAsmw">Discord Server</a>
</div>
<div class="github">
<a href="https://github.com/luau">
<img class="git-png" src="img/github.svg" alt="icon" />
</a>
<a class="github-link" href="https://github.com/luau">GitHub</a>
</div>
</section>
</main>
<div class="light x1"></div>
<div class="light x2"></div>
<div class="light x3"></div>
<div class="light x4"></div>
<div class="light x5"></div>
<div class="light x6"></div>
<div class="light x7"></div>
<div class="light x8"></div>
<div class="light x9"></div>
</body>
</html>