-
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.
* chore: remove content from resources * chore: clean up footer * chore: remove banner * chore: remove unused import
- Loading branch information
1 parent
b99b2d9
commit b80f13e
Showing
6 changed files
with
72 additions
and
103 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
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
This file was deleted.
Oops, something went wrong.
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,60 @@ | ||
type Resource = { | ||
title: string; | ||
link: string; | ||
desc: string; | ||
newTab?: boolean; | ||
main: string; | ||
accent: string; | ||
background: string; | ||
icon: string; | ||
}; | ||
|
||
export const RESOURCES: Resource[] = [ | ||
{ | ||
title: "Project Teams", | ||
link: "/project-teams", | ||
desc: "Work on a team to design a beautiful large-scale product.", | ||
main: "red", | ||
accent: "gray", | ||
background: "var(--blush)", | ||
icon: "res-pt.svg", | ||
}, | ||
{ | ||
title: "Workshop Slides", | ||
link: "https://drive.google.com/drive/folders/14yhiCBnk0E6GECv8LPwSxduM1Nb6GOAQ?usp=sharing", | ||
desc: "View past workshop slides.", | ||
newTab: true, | ||
main: "orange", | ||
accent: "gray", | ||
background: "#ffe4d4", | ||
icon: "res-slides.svg", | ||
}, | ||
{ | ||
title: "Featured Resources", | ||
link: "/resources/featured/", | ||
desc: "Explore our curated collection of useful online tools, guides, and more.", | ||
main: "orange", | ||
accent: "gray", | ||
background: "var(--peach)", | ||
icon: "res-featured.svg", | ||
}, | ||
{ | ||
title: "Design-a-thon", | ||
link: "/designathons/", | ||
desc: "Our biggest event held every year. Teams design and compete for prizes", | ||
main: "blue", | ||
accent: "gray", | ||
background: "var(--sky)", | ||
icon: "res-designathon.svg", | ||
}, | ||
{ | ||
title: "Newsletter Archive", | ||
link: "https://us16.campaign-archive.com/home/?u=96e1277e37e6f4c2940cd1dc9&id=3cdf6c3ea8", | ||
desc: "View past newsletters.", | ||
newTab: true, | ||
main: "black", | ||
accent: "gray", | ||
background: "var(--silver)", | ||
icon: "res-archive.svg", | ||
}, | ||
]; |