-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
102 lines (89 loc) · 5.47 KB
/
about.html
File metadata and controls
102 lines (89 loc) · 5.47 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About</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="Logo" class="nav-logo">
</a>
<div class="nav-links">
<a href="index.html">Home</a>
<a href="about.html" class="active">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">
<h1 class="page-title" style="text-align: center;">Team</h1>
<div style="text-align: center;">
<img src="assets/group_picture.png"
alt="Group Picture"
style="width: 100%; max-width: 400px; border-radius: 0;">
<div class="profile-role">(not a placeholder anymore btw)</div>
<div style="margin-top: 30px;"></div>
</div>
<div class="grid">
<div class="card profile-card">
<img src="assets/profile-pictures/epu.jpg" class="profile-img">
<div class="profile-name">EPU-Jelly</div>
<div class="profile-role">Hardware Developer</div>
<div class="profile-bio">I have had Cozmo since the first year of its release, and as of recently I do CPU swaps for ANKI's other robot Vector. I love the personality, technical capibilities and quality that our favourite little robots have and am always looking for ways to improve or work on them. I am open to any questions or suggestions you might have feel free to contact me on any of my socials :3.</div>
<a href="https://github.com/EPUJelly" class="btn">GitHub</a>
</div>
<div class="card profile-card">
<img src="assets/profile-pictures/chrideefer.webp" class="profile-img">
<div class="profile-name">Chri-Deefer</div>
<div class="profile-role">Web Developer & Software Preserver</div>
<div class="profile-bio">Got my first Cozmo long ago. Dude was my best friend. I've been in and out of them for battery replacements for years now. Looking forward to keeping the community alive and maintaining more of this site. Open for contact! :)</div>
<a href="https://chrideefer.com" class="btn">Website</a>
</div>
<div class="card profile-card">
<img src="assets/profile-pictures/jaegerwald.png" class="profile-img">
<div class="profile-name">Jaegerwald</div>
<div class="profile-role">Software Developer</div>
<div class="profile-bio">I've been passionate about Anki and their products ever since I was a little kid. I'm self taught, and I enjoy doing the things I do as a hobby. If you've got something you want to ask us, I'll always be available for contact!</div>
<a href="https://github.com/Jaegerwald" class="btn">GitHub</a>
<div style="margin-top: 15px;"></div>
<a href="mailto:jae@sharkb.yt" class="btn">Email</a>
</div>
<div class="card profile-card">
<img src="assets/profile-pictures/elliolectric.webp" class="profile-img">
<div class="profile-name">Elliolectric</div>
<div class="profile-role">Hardware & Software Developer</div>
<div class="profile-bio">After finding a broken Cozmo asking for a new home, it's been my goal to fix him up. I'm excited to learn and work together with the rest of the Razu team to make that and more a reality!
If you have any ideas or suggestions regarding Cozmo and his features, feel free to message me :3</div>
<a href="https://github.com/Elliolectric" class="btn">GitHub</a>
</div>
<div class="card profile-card">
<img src="assets/icon.png" class="profile-img">
<div class="profile-name">cozmo14047</div>
<div class="profile-role">PCB/Software Developer</div>
<div class="profile-bio">Ever since I got my first Cozmo in 2018, I've been passionate about making him fully autonomous. I've always been fascinated by Anki and their products. Working on Cozmo is more than just a hobby for me; it's a passion.
If you want to chat about Cozmo or have any inquiries, my inbox is always open! (¬‿¬)</div>
<a href="https://github.com/cozmo14047" class="btn">GitHub</a>
</div>
</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>