-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #24 from Team5599/main
Merge updates into heroku beta site
- Loading branch information
Showing
57 changed files
with
1,820 additions
and
492 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> | ||
) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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%); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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]' | ||
|
Oops, something went wrong.