Skip to content

Commit

Permalink
Merge pull request #24 from Team5599/main
Browse files Browse the repository at this point in the history
Merge updates into heroku beta site
  • Loading branch information
DeveloperBlue authored Dec 21, 2023
2 parents 26ec619 + 10aeff0 commit b27b58c
Show file tree
Hide file tree
Showing 57 changed files with 1,820 additions and 492 deletions.
7 changes: 6 additions & 1 deletion .env.local.template
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# .env.local

GOOGLE_CALENDAR_API=""
# Base API URL
# Note: Do not include quotes, slashes, or semicolons at the end of baseURL
NEXT_PUBLIC_API_BASE=https://beta.team5599.com

# Google Calendar API Key
NEXT_PUBLIC_GOOGLE_CALENDAR_API=""

# All .env variables are loaded in heroku's production environment. These exist only to help with local development.
2 changes: 1 addition & 1 deletion .github/workflows/update.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
id: request
uses: tyrrrz/action-http-request@master
with:
url: https://beta.team5599.com/api/v2/Update
url: ${{vars.FRONTEND_UPDATE_ENDPOINT}}
method: POST
headers: |
Content-Type: application/json
Expand Down
13 changes: 8 additions & 5 deletions app/AboutUs/page.js
Original file line number Diff line number Diff line change
Expand Up @@ -56,25 +56,28 @@ export default function AboutUs() {
</SubheaderShape>
<div className='container' style={{display: 'flex', flexDirection : 'column', gap : 20, paddingTop : 80, paddingBottom : 120, textAlign : 'justify'}}>
<h2 style={{textAlign : 'center'}}>
TITLE
WHO WE ARE
</h2>
<p>
The Sentinels are Benjamin N. Cardozo High School's Robotics Team. We compete in various annual robotics competitions against high schools across the globe, raising awareness for Science, Technology, Engineering, and Mathematics (STEM), along with teaching students aspects behind business and marketing, logistics, and media. We also participate in various community and school events.
</p>
<p>
FRC Team 5599, participates in the annual FIRST® Robotics Competition (FRC). In a six week time span, we raise funds, design, and construct a fully-functional robot.
</p>
<p>
In 2014, the team was awarded the Future Glory Award at the Brunswick Eruption 2014 off-season competition. In 2015, the team took home the Rookie Inspiration Award from the New York City 2015 Regional Competition. In 2017, the team was the leading alliance in finals at the Hudson Valley Rally off-season competition in Yonkers, New York. In 2018, the team played in the quarter-finals in the New York City 2018 Regional Competition on an alliance with specialized school Brooklyn Technical High School and Long Island City High School. At the time Vice-Captain and Director of Marketing, Danielle Louie, was a Dean's Lists Award semi-finalist. At the 2019 SBPLI Long Island Regional Competition (#2), Nazifa Prapti was a Dean's List Award semi-finalist, and was also awarded the MVP Achievement in recognition of their "Individual excellence, contribution, and achievement" during the competition season. At the New York City 2019 Regional, Nazifa was a Dean's List Award finalist, one of the highest acclaimed awards in the entire FIRST Robotics program. The team placed in the semi-finals during the 2019 Half Hallow Hills Robotics Invitational off-season event.
</p>
<div className={styles.teamPhotoContainer}>

</div>
<h2 style={{textAlign : 'center'}}>
MISSION
<h2 style={{textAlign : 'center', marginTop : 80}}>
OUR MISSION
</h2>
<p>
The Sentinels are Benjamin N. Cardozo High School's Robotics Team. We compete in various annual robotics competitions against high schools across the globe, raising awareness for Science, Technology, Engineering, and Mathematics (STEM), along with teaching students aspects behind business and marketing, logistics, and media. We also participate in various community and school events.
Our mission is to inspire leadership through hands-on projects and activities while fostering a passion for fields in STEM and providing invaluable skills in networking, communication, problem-solving, and teamwork in a fun and engaging environment.
</p>
<p>
FRC Team 5599, participates in the annual FIRST® Robotics Competition (FRC). In a six week time span, we raise funds, design, and construct a fully-functional robot.
We envision a world where everyone is provided with the opportunities to learn and develop a passion in STEM in a uplifting environment through hands-on projects and collaboration.
</p>
<div
className={styles.buttonSection}
Expand Down
27 changes: 27 additions & 0 deletions app/Alumni/page.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
import styles from './page.module.css'

import Navbar from '@components/Navbar/Navbar'
import Footer from '@components/Footer/Footer'
import Header from '@components/Header/Header'
import ComingSoonBanner from '@components/ComingSoonBanner/ComingSoonBanner'

export default function Alumni() {
return (
<div
style={{
backgroundColor : 'black'
}}
>
<Navbar/>
<Header size='md' imageClass={styles.headerOne} masked={true} divider={true}>
<div className='container restrictHeader' style={{color : '#fff'}}>
<h2>
ALUMNI OUTREACH
</h2>
</div>
</Header>
<ComingSoonBanner/>
<Footer/>
</div>
)
}
5 changes: 5 additions & 0 deletions app/Alumni/page.module.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
.headerOne {
background-image : url('/images/headers/header.jpg');
background-position: 50% 80%;
filter: brightness(75%) contrast(115%);
}
2 changes: 1 addition & 1 deletion app/Calendar/page.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import Footer from '@components/Footer/Footer'

import GoogleCalendar from "@ericz1803/react-google-calendar";

const API_KEY = ""
const API_KEY = process.env.NEXT_PUBLIC_GOOGLE_CALENDAR_API;
const calendars = [
{
calendarID : '[email protected]'
Expand Down
Loading

0 comments on commit b27b58c

Please sign in to comment.