Skip to content

Latest commit

 

History

History
193 lines (185 loc) · 6.58 KB

File metadata and controls

193 lines (185 loc) · 6.58 KB

About Us

Our goal is to help UCLA students make informed enrollment decisions by providing UCLA enrollment trends, alerts, reviews, grades, textbooks, and more. All on one website, completely free. Made for UCLA students BY UCLA students.

Founders

<%= image_tag('/images/team/nathan_smith.jpg', class: 'rounded-full bg-gray-300 mb-10 mx-auto', style: 'width: 100px; height: 100px; object-fit: cover;') %>
Nathan Smith
Software Engineer @ Stripe
Timothy Gu
MS Computer Science @ Stanford

Our Team

Brandon Pan
PM Lead
Justin Quan
EM Lead
Alwena Lin
PM
Andrew Han
PM
Brian Ton
PM
Jiacheng Wang
Developer
Jonathan Si
Developer
Joycelyn Ng
Developer
Cecily Hu
Designer
Yifei Sun
Designer
Elisa Fang
Designer
Jonathan King
Marketer
Katherine Chan
Marketer
Kylie Bach
Marketer

Alumni

Coming soon

<script> // Hide the team icons initially var teamIcons = document.querySelectorAll('.team-icon'); teamIcons.forEach(function(icon) { icon.style.backgroundColor = '#ccc'; }); // Load the team icons and display them once loaded window.addEventListener('load', function() { teamIcons.forEach(function(icon) { var imageUrl = icon.style.backgroundImage.replace(/^url\(["']?([^"']*)["']?\)$/i, '$1'); var image = new Image(); image.src = imageUrl; image.addEventListener('load', function() { icon.style.backgroundImage = 'url(' + imageUrl + ')'; }); }); }); </script> <style> /* CSS for the team icons */ .team-icon { width: 100px; height: 100px; border-radius: 50%; background-color: #ccc; margin-bottom: 10px; margin-left: auto; margin-right: auto; background-size: cover; background-repeat: no-repeat; background-position: center; } </style>