-
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.
- Loading branch information
Showing
3 changed files
with
27 additions
and
37 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
export const cardButtons = [ | ||
{ | ||
iconPath: '/assets/main/DevStudy.svg', | ||
label: '개발/스터디', | ||
onClick: () => console.log('DevStudy clicked'), | ||
}, | ||
{ | ||
iconPath: '/assets/main/Networking.svg', | ||
label: '네트워킹', | ||
onClick: () => console.log('Networking clicked'), | ||
}, | ||
{ | ||
iconPath: '/assets/main/Hackathon.svg', | ||
label: '해커톤', | ||
onClick: () => console.log('Hackathon clicked'), | ||
}, | ||
{ | ||
iconPath: '/assets/main/Conference.svg', | ||
label: '컨퍼런스', | ||
onClick: () => console.log('Conference clicked'), | ||
}, | ||
]; |