-
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: move tech stack logos to public and update file paths
- Loading branch information
1 parent
26d6c6b
commit 52c2aee
Showing
41 changed files
with
75 additions
and
201 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
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
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,44 @@ | ||
export const techLogoNames = [ | ||
"react", | ||
"html", | ||
"pwa", | ||
"css", | ||
"bootstrap", | ||
"express", | ||
"git", | ||
"github", | ||
"materialui", | ||
"mongodb", | ||
"socketio", | ||
"typescript", | ||
"nodejs", | ||
"javascript", | ||
"redux", | ||
"sass", | ||
"d3", | ||
"vuejs", | ||
"styledcomponents", | ||
"postman", | ||
"cypress", | ||
"jest", | ||
"msw", | ||
"nextjs", | ||
"playwright", | ||
"python", | ||
"storybook", | ||
"vitejs", | ||
"amcharts", | ||
"semanticui", | ||
] as const; | ||
|
||
type TTechLogoName = (typeof techLogoNames)[number]; | ||
|
||
export type TTechLogo = Record<TTechLogoName, { label: string; src: string }>; | ||
|
||
export const techLogos = techLogoNames.reduce((acc, logoName) => { | ||
acc[logoName] = { | ||
label: logoName[0].toUpperCase() + logoName.slice(1), | ||
src: `./logos/${logoName}.svg`, | ||
}; | ||
return acc; | ||
}, {} as TTechLogo); |
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 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
Oops, something went wrong.