-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathindex.html
More file actions
161 lines (136 loc) · 4.78 KB
/
index.html
File metadata and controls
161 lines (136 loc) · 4.78 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
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>UAARG</title>
<link rel="stylesheet" href="/css/style.css">
<link rel="icon" href="/favicon.ico" type="image/x-icon">
</head>
<body>
<header>
<nav>
<a href="/" class="logo">
<img alt="UAARG Logo" src="/img/logo.webp" />
UAARG
</a>
<div class="flex-1"></div>
<a href="/join.html">
Join the Team
</a>
<a href="/about.html">
About Us
</a>
<a href="/sponsors.html">
Sponsors
</a>
<!--
<a href="/">
Blog
</a>
-->
</nav>
</header>
<main>
<div class="bg bg-grey">
<section>
<div class="text">
<h2>University of Alberta Aerial Robotics Group</h2>
<p class="no-mt medium">We make flying robots</p>
<div class="row end">
<a href="/sponsors.html" class="button">Sponsorship</a>
<a href="/join.html" class="primary button">Join Us</a>
</div>
</div>
<img src="/img/team-comp2025.webp" alt="CAD Diagram of Pheon-X2" />
</section>
</div>
<section>
<img src="/img/team.webp" alt="Team Photo of UAARG's 2025 Team" />
<div class="text">
<h2>Who Are We?</h2>
<p>We are a group of motivated university students <b> building the future
of autonomous aircraft.</b> Since our inception in 2004 our focus lies in
overcoming complex engineering challenges
associated with fully autonomous drones.
</p>
<p> We design, manufacture and rigorously test our drones
<b>from scratch</b> while annually representing University of Alberta in
national and international RPAS competitions.
</p>
<div class="row end">
<a href="/about.html" class="button">Meet the Team</a>
<a href="/join.html" class="primary button">Join Us</a>
</div>
</div>
</section>
<div class="bg bg-grey">
<section>
<div class="text">
<h2>Our Aircraft</h2>
<h1>Pheon-X2</h1>
<p class="no-mt medium">Heavy-Lift Quadcopter</p>
<p> Our second iteration of the Pheon-X series, the Pheon-X2 is a
heavy-lift quadcopter designed to carry large payloads while maintaining
high maneuverability and flight time. The Pheon-X2 is capable of carrying
up to 5kg of payload with a total weight of 13kg.
</p>
<div class="row end">
<!--
<a href="#" class="primary button">Specs</a>
-->
</div>
</div>
<img src="/img/pheon-x2.webp" alt="Pheon-X2" />
</section>
</div>
<div class="bg">
<section>
<div class="text">
<h1>Trident</h1>
<p class="no-mt medium">High-Efficiency Tilt-Rotor VTOL</p>
<p> Trident is our new VTOL, an aircraft that takes-off vertically and
transitions to horizontal flight. It is designed for high efficiency and
long endurance, making it ideal for applications such as surveillance,
mapping, and delivery.
</p>
<div class="row end">
<!--
<a href="#" class="primary button">Specs</a>
-->
</div>
</div>
<img src="/img/trident.webp" alt="Trident VTOL" />
</section>
</div>
<div class="bg bg-grey">
<section>
<div class="text">
<h1>Pheon-X1</h1>
<p class="no-mt medium">Quadcopter</p>
<p> Our first iteration of the Pheon-X series, the Pheon-X1 quadcopter
won 2nd overall at the 2024 Student AEAC Competition in Alma, QC.
</p>
<div class="row end">
<!--
<a href="#" class="primary button">Specs</a>
-->
</div>
</div>
<img src="/img/pheon-x1.webp" alt="Pheon-X1" />
</section>
</div>
</main>
<footer>
<section>
<p class="center">
<a href="https://www.linkedin.com/company/uaarg/" target="_blank"><img src="/img/linkedin-black.png" class="social-logo" alt="Linkedin"></a>
<a href="https://www.instagram.com/uaarg.ca/" target="_blank"><img src="/img/ig-black.png" class="social-logo" alt="Instagram"></a>
<br>
© UAARG, All Rights Reserved
</p>
</section>
</footer>
</body>
</html>