-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
53 lines (49 loc) · 2.35 KB
/
index.html
File metadata and controls
53 lines (49 loc) · 2.35 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>The Razu Project</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<nav class="navbar">
<div class="nav-center">
<a href="index.html" class="nav-brand">
<img src="assets/logo.png" alt="Razu Logo" class="nav-logo">
</a>
<div class="nav-links">
<a href="index.html" class="active">Home</a>
<a href="about.html">About</a>
<a href="downloads.html">Resources</a>
</div>
<div class="nav-socials">
<a href="https://github.com/RazuProject"><img src="assets/github.svg" class="social-icon" alt="GitHub"></a>
<a href="https://discord.gg/mkbx4B4de2"><img src="assets/discord.svg" class="social-icon" alt="Discord"></a>
<a href="https://youtube.com/@RazuProject"><img src="assets/youtube.svg" class="social-icon" alt="YouTube"></a>
</div>
</div>
</nav>
<main class="container">
<div class="hero">
<img src="assets/logo.svg" alt="Razu Project" style="max-width: 300px; margin-bottom: 2rem;">
<p style="font-size: 1.2rem; color: #aaa; max-width: 600px; margin: 0 auto;">
Small group of people who are passionate about Anki's products and robots, and want to make improvements to them to make them even better than before!
Stay tuned ( •̀ ω •́ )✧
</p>
<div style="margin-top: 2rem; display: flex; flex-direction: column; align-items: center;">
<iframe src="https://discord.com/widget?id=1217946650316767342&theme=dark" width="350" height="500" allowtransparency="true" frameborder="0" sandbox="allow-popups allow-popups-to-escape-sandbox allow-same-origin allow-scripts"></iframe>
</div>
</main>
<script>
window.addEventListener('keydown', function(event) {
if (event.key === '.') {
const targetTag = event.target.tagName.toLowerCase();
if (targetTag !== 'input' && targetTag !== 'textarea' && !event.target.isContentEditable) {
window.location.href = 'https://github.com/RazuProject/RazuProject.github.io';
}
}
});
</script>
</body>
</html>