Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Minor Fixes to Event Info Page #73

Merged
merged 4 commits into from
Jun 15, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion app/event/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ function EventPage() {
</div>

<div className="flex flex-col items-start justify-start w-full" id="project-submission">
<h1 className="p-4 text-4xl font-bold">Project Submission and Judging</h1>
<h1 className="p-4 text-4xl font-bold text-white">Project Submission and Judging</h1>
<div className="flex flex-col md:flex-row">
<div className="container p-4">
<h1 className="font-semibold text-3xl mb-4 text-white">JUDGING CRITERIA</h1>
Expand Down
4 changes: 1 addition & 3 deletions components/maps/google_maps.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
export default function GoogleMapsWidget() {
const GOOGLE_MAPS_API_KEY = process.env.GOOGLE_MAPS_API_KEY;

return (
<a
href="https://www.google.com/maps/place/Darrin+Communications+Center,+Rensselaer+Polytechnic+Institute,+110+8th+St,+Troy,+NY+12180"
Expand All @@ -16,7 +14,7 @@ export default function GoogleMapsWidget() {
frameBorder="0"
style={{ border: 0 }}
referrerPolicy="no-referrer-when-downgrade"
src={`https://www.google.com/maps/embed/v1/place?key=${GOOGLE_MAPS_API_KEY}&q=Darrin+Communications+Center,Rensselaer+Polytechnic+Institute|1102+Sage+Ave,+Troy,+NY+12180&zoom=15`}
src={`https://www.google.com/maps/embed/v1/place?key=${process.env.NEXT_PUBLIC_GOOGLE_MAPS_API_KEY}&q=Darrin+Communications+Center,Rensselaer+Polytechnic+Institute|1102+Sage+Ave,+Troy,+NY+12180&zoom=15`}
allowFullScreen
></iframe>
</div>
Expand Down