forked from AndrewDmit04/robosubWebsite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathWebsite.Config.ts
219 lines (215 loc) · 6.34 KB
/
Website.Config.ts
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
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
import { Code2, Wrench, Cpu, Briefcase } from "lucide-react";
//Departments section on home page.
export const departments = [
{
name: "Programming Department",
description: "Our software team develops cutting-edge autonomous navigation systems, implements advanced computer vision algorithms, and creates robust control systems. We work with ROS2, Python, and C++ to make our submarine and boat think and act intelligently.",
icon: Code2,
color: "#53cbec"
},
{
name: "Mechanical Department",
description: "The mechanical team designs and fabricates our robots' frames, propulsion systems, and waterproof enclosures. We use CAD software, 3D printing, and traditional manufacturing techniques to create innovative solutions for marine challenges.",
icon: Wrench,
color: "#53cbec"
},
{
name: "Electrical Department",
description: "Our electrical engineers design power distribution systems, integrate sensors, and create custom circuit boards. We manage complex battery systems and implement fail-safe mechanisms to ensure reliable operation in marine environments.",
icon: Cpu,
color: "#53cbec"
},
{
name: "Business Department",
description: "The business team manages our resources, coordinates with sponsors, and handles competition logistics. We develop presentation materials, maintain documentation, and ensure the team's long-term sustainability.",
icon: Briefcase,
color: "#53cbec"
}
];
//departments and officers on officers page
export const officersDeps = [
{
title: "Executive Team",
officers: [
{
name: "Ken Shibatani",
role: "President",
major: "Mechanical Engineering",
img: "/imgs/officers/cen.png",
gradYear: 2026,
},
{
name: "Brandon Lam",
role: "Vice President",
major: "Mechanical Engineering",
img: "/imgs/officers/brandon.png",
gradYear: 2026,
},
{
name: "Colin Wong",
role: "Treasurer",
major: "Computer Science + Minors in Math & Cognitive Science",
img: "/imgs/officers/colin.png",
gradYear: 2027,
linkedin: "https://www.linkedin.com/in/the-colin-wong",
github: "https://github.com/democat3457",
},
{
name: "Nathan Wignall",
role: "Secretary",
major: "Computer Engineering",
img: "/imgs/officers/Nathan_Wignall.jpeg",
gradYear: 2028,
},
{
name: "James Dungan",
role: "Outreach Director",
major: "Business Administration",
img: "/imgs/officers/james.png",
gradYear: 2028,
},
{
name: "Anna Xie",
role: "Marketing Director",
major: "GIS + Minor in Design",
img: "/imgs/officers/anna.png",
gradYear: 2025,
},
{
name: "Farhan Jamil",
role: "RoboBoat Director",
major: "Computer Science",
img: "/imgs/officers/farhan.png",
gradYear: 2025,
},
{
name: "Andrew Dmitrievsky",
role: "Web Master",
major: "Computer Science",
img: "/officers/Example.jpeg",
gradYear: 2025,
linkedin: "https://www.linkedin.com/in/andrewdmit/",
github: "https://github.com/AndrewDmit04",
},
]
},
{
title: "MATE ROV Team",
officers: [
{
name: "Josiah Myhre",
role: "Mechanical Lead",
major: "Mechanical Engineering",
img: "",
gradYear: 2026,
},
{
name: "Mohammad Khan",
role: "Programming Lead",
major: "Neuroscience + Math + Minor in CS",
img: "/imgs/officers/mohammad.png",
gradYear: 2026,
},
{
name: "Ishaan Mistry",
role: "Electrical Lead",
major: "Electrical Engineering",
img: "/imgs/officers/ishaan.png",
gradYear: 2024,
},
{
name: "Tiffany Leung",
role: "Float Lead",
major: "BMEN",
img: "/imgs/officers/tiffany.png",
gradYear: 2026,
},
]
},
{
title: "RoboBoat Team",
officers: [
{
name: "Farhan Jamil",
role: "RoboBoat Director",
major: "Computer Science",
img: "/imgs/officers/farhan.png",
gradYear: 2025,
},
{
name: "Brandon Lam",
role: "Mechanical Lead",
major: "Mechanical Engineering",
img: "/imgs/officers/brandon.png",
gradYear: 2026,
},
{
name: "Dineshman Bajracharya",
role: "Electrical Lead",
major: "Computer Engineering",
img: "/imgs/officers/Dineshman_Bajracharya.jpg",
gradYear: 2026,
},
{
name: "Jonathan Lewis",
role: "Programming Lead",
major: "Computer Science",
img: "/imgs/officers/jonathan.jpg",
gradYear: 2028,
},
]
}
];
// stats on officers page
export const stats = {
members: 60,
founded: 2022,
majorsRepresented: 9
};
//projects on projects page
export const projects = [
{
title: "MateROV",
image: "/imgs/logos/Hydromeda.png",
description: "Our competition focused underwater robotic submarine team",
points: [
"MATE ROV 2024 Pioneer 3rd Place and 1st Place Technical Documentation",
"Custom watertight enclosure",
"ROS2 architecture and camera vision",
"Modular electrical system",
]
},
{
title: "Float",
image: "/imgs/projects/float/float.jpg",
description: "Create a vertical profiling float for MATE ROV",
points: [
"Bouyancy Engine System",
"Data tracking and wireless transmission",
"PID control implementation",
"Servicable and modular",
]
},
{
title: "RoboBoat",
image: "/imgs/logos/GalaxSea.png",
description: "Competition team focused on creating an Autonomous Surface Vehicle",
points: [
"Hydrodynamic hull optimization",
"Modular component design for easy maintenance",
"Real-time obstacle detection and avoidance using computer vision",
"Waterproof electronics housing",
]
},
{
title: "Mini Float",
image: "/imgs/projects/mate/screenshot.png",
description: "Work with a team of 3-4 to create a vertical profiling float",
points: [
"Beginner Friendly",
"PID control implementation",
"Depth and orientation stabilization",
"Environmental Data Collection",
]
}
];