-
Notifications
You must be signed in to change notification settings - Fork 0
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
Add hackathon link section and style updates #118
base: main
Are you sure you want to change the base?
Changes from all commits
2195622
b18105d
439ef6c
58be160
cbc585f
d6edaaa
02e6826
fc5ed76
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
{ | ||
// Use IntelliSense to learn about possible attributes. | ||
// Hover to view descriptions of existing attributes. | ||
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 | ||
"version": "0.2.0", | ||
"configurations": [ | ||
{ | ||
"type": "chrome", | ||
"request": "launch", | ||
"name": "Launch Chrome against localhost", | ||
"url": "http://localhost:8080", | ||
"webRoot": "${workspaceFolder}" | ||
} | ||
] | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
import React from 'react'; | ||
import Image from 'next/image'; | ||
const EVENTS_IMAGE = 'w-40 h-1/3 md:w-full md:h-full rounded-3xl relative'; | ||
|
||
import { rgbDataURL } from '../utils/blurImage'; | ||
|
||
export const EventTileImage = ({ image }) => { | ||
return ( | ||
<div> | ||
<div> | ||
<Image | ||
className={EVENTS_IMAGE} | ||
src={`https:${image.fields.file.url}`} | ||
alt={image.fields.title || 'Event image'} | ||
width={400} | ||
height={100} | ||
placeholder="blur" | ||
objectFit="cover" | ||
blurDataURL={rgbDataURL()} | ||
/> | ||
</div> | ||
</div> | ||
); | ||
}; |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
|
||
import Heading from './Heading'; | ||
import { UnderlineTypes } from '../utils/underlineType'; | ||
import TextSection from './TextSection'; | ||
import Link from 'next/link'; | ||
|
||
|
||
|
||
const HackathonLink = () => { | ||
return ( | ||
<div className="flex flex-col items-center bg-orange z-0 pb-12 md:pb-16 lg:pb-20"> | ||
<div className="flex items-baseline space-x-4 mb-4 pt-16 px-10 md:px-24 lg:px-48"> | ||
<Heading classes="text-white text-[2.25rem]" underlineType={UnderlineTypes.PURPLE_SHORT_UNDERLINE}> | ||
Join the Change at Our Hackathons: Hack the Change | ||
</Heading> | ||
</div> | ||
<TextSection classes="text-white pb-5 z-10 px-10 md:px-24 lg:px-48 md:py-4"> | ||
Dive into collaborative innovation with Code the Change YYC's hackathons! Designed to empower | ||
student developers and create real-world impact, our hackathons offer an exciting opportunity | ||
to learn, build, and connect. Whether you're solving pressing challenges or sharpening your | ||
skills, there's a place for everyone. | ||
</TextSection> | ||
<TextSection classes="text-white pb-5 z-10 px-10 md:px-24 lg:px-48 md:py-4 font-medium"> | ||
Explore upcoming events, resources, and more at: {' '} | ||
</TextSection> | ||
<TextSection classes="text-white pb-10 z-20 px-10 md:px-24 lg:px-48 md:py-4"> | ||
<Link | ||
href="https://hackthechangeyyc.ca" | ||
target="_blank" | ||
rel="noopener noreferrer" | ||
className="text-blue font-semibold underline"> | ||
<span>hackthechangeyyc.ca</span> | ||
</Link> | ||
</TextSection> | ||
</div> | ||
); | ||
}; | ||
|
||
export default HackathonLink; |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,51 +1,60 @@ | ||
import RubyForGood from "../public/images/projects/rfg.png"; | ||
import YWCA from "../public/images/projects/ywca.png"; | ||
import Mindfuel from "../public/images/projects/mindfuel.png"; | ||
import AMHAC from "../public/images/projects/amhac.png"; | ||
import AXS from "../public/images/projects/axs_map.png"; | ||
import RubyForGood from '../public/images/projects/rfg.png'; | ||
import YWCA from '../public/images/projects/ywca.png'; | ||
import Mindfuel from '../public/images/projects/mindfuel.png'; | ||
import AMHAC from '../public/images/projects/amhac.png'; | ||
import AXS from '../public/images/projects/axs_map.png'; | ||
import ScubaSeas from '../public/images/projects/ScubaSeas.png'; | ||
|
||
export const projects = [ | ||
{ | ||
logo: RubyForGood, | ||
name: "Ruby for Good CASA", | ||
liveProjectLink: "https://casavolunteertracking.org/", | ||
githubLink: "https://github.com/rubyforgood/casa/issues/1017", | ||
name: 'Ruby for Good CASA', | ||
liveProjectLink: 'https://casavolunteertracking.org/', | ||
githubLink: 'https://github.com/rubyforgood/casa/issues/1017', | ||
descriptions: [ | ||
"Built an SMS Twilio integration within a volunteer management system for the nonprofit CASA, which serves foster youth in counties across America", | ||
'Built an SMS Twilio integration within a volunteer management system for the nonprofit CASA, which serves foster youth in counties across America', | ||
], | ||
}, | ||
{ | ||
logo: YWCA, | ||
name: "E-learning Storefront", | ||
name: 'E-learning Storefront', | ||
descriptions: [ | ||
"Creation and design of a storefront website with e-commerce integrated", | ||
'Creation and design of a storefront website with e-commerce integrated', | ||
"Build APIs to interface with companies' different E-Learning platforms", | ||
"Work with secure registration and authentication technologies", | ||
'Work with secure registration and authentication technologies', | ||
], | ||
}, | ||
{ | ||
logo: Mindfuel, | ||
name: "Mindfuel System Redesign", | ||
name: 'Mindfuel System Redesign', | ||
descriptions: [ | ||
"Build an activity board that contains new aggregated data everyday", | ||
"Start from scratch or build on top of current system", | ||
"Work with skilled developers from the Mindfuel team", | ||
'Build an activity board that contains new aggregated data everyday', | ||
'Start from scratch or build on top of current system', | ||
'Work with skilled developers from the Mindfuel team', | ||
], | ||
}, | ||
{ | ||
logo: AXS, | ||
name: "AXS Map", | ||
liveProjectLink: "https://www.axsmap.com/", | ||
githubLink: "https://github.com/axsmap/app", | ||
descriptions: ["A tool designed to help us map inclusion in communities and find more places for more people."], | ||
name: 'AXS Map', | ||
liveProjectLink: 'https://www.axsmap.com/', | ||
githubLink: 'https://github.com/axsmap/app', | ||
descriptions: ['A tool designed to help us map inclusion in communities and find more places for more people.'], | ||
}, | ||
{ | ||
logo: AMHAC, | ||
name: "Alberta Mental Health Advocacy Coalition", | ||
name: 'Alberta Mental Health Advocacy Coalition', | ||
descriptions: [ | ||
"Create and design the organization website and logo", | ||
"Expand their online presence to reach more individuals", | ||
"Good project for members who are at the beginning of their programming journey", | ||
'Create and design the organization website and logo', | ||
'Expand their online presence to reach more individuals', | ||
'Good project for members who are at the beginning of their programming journey', | ||
], | ||
}, | ||
{ | ||
logo: ScubaSeas, | ||
name: 'ScubaSeas', | ||
descriptions: [ | ||
'Open source mobile app that helps divers map out the entire ocean', | ||
'Mobile App Developers needed to contribute to the open source project', | ||
], | ||
}, | ||
]; |
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Revert this change as well and instead update your .env.local file to match the correct environment variable name for consistency. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. |
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Please also revert these changes so the project configurations aren't modified |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This file is user-specific for configurations so it should not go into the shared repo. Please add this to your .gitignore instead!