Skip to content

Commit

Permalink
Updated slides button to fix color readability. Also added new event …
Browse files Browse the repository at this point in the history
…and fixed home page typo
  • Loading branch information
ryqndev committed Apr 1, 2022
1 parent 335fc39 commit b2fa3a3
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "react-duci",
"version": "1.0.0",
"version": "1.0.1",
"private": true,
"dependencies": {
"@testing-library/user-event": "^12.8.3",
Expand Down
3 changes: 2 additions & 1 deletion src/app/pages/Events/components/EventCard/EventCard.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ const EventCard = ({ ...event }) => (
'button S fill ' +
(label === 'Recording' ? 'blue' : 'gray')
}
style={{color: label === 'Recording' ? 'white' : 'black', paddingTop:'8px'}}
href={link}
>
<Text>
Expand All @@ -35,7 +36,7 @@ const EventCard = ({ ...event }) => (
color={
label === 'Recording'
? 'var(--sky)'
: 'var(--gray)'
: 'var(--black)'
}
style={{
width: '24px',
Expand Down
2 changes: 1 addition & 1 deletion src/app/pages/Home/Home.js
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ const Home = () => (
</div>
<div className='wait flex left'>
<Text size='XL' className='bold'>
Get invovled in our special programs, like{' '}
Get involved in our special programs, like{' '}
<Text size='XL' className='bold color blue'>
Design-a-thon
</Text>{' '}
Expand Down
12 changes: 12 additions & 0 deletions src/assets/data/events/all.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,16 @@
[
{
"title": "Ask Me Anything: Student Intern Panel",
"time": "4/20/2022 8:00 PM",
"duration": "90",
"type": "Workshop",
"desc": " Curious about designing at the industry level? Not sure how to land internships? Swing by our Ask Me Anything: Student Intern Panel to ask student peers about their design internship experiences! From graphic to UI/UX to product, we’ll have panelists from all types of design backgrounds. Be sure to prep any burning questions you may have, and we hope to see you there!",
"place": "Online",
"links": [{
"label": "Zoom Link",
"link": "https://uci.zoom.us/j/99935306945"
}]
},
{
"title": "Game Night Extravaganza",
"time": "4/13/2022 8:00 PM",
Expand Down

0 comments on commit b2fa3a3

Please sign in to comment.