Skip to content

Commit

Permalink
Add YouTube to MakeSense social media links
Browse files Browse the repository at this point in the history
  • Loading branch information
SkalskiP committed Dec 20, 2022
1 parent e7e3828 commit 86f75f4
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 2 deletions.
Binary file added public/ico/youtube-logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
11 changes: 9 additions & 2 deletions src/data/info/SocialMediaData.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ export const SocialMediaData: ISocialMedia[] = [
imageSrc: '/ico/github-logo.png',
imageAlt: 'GitHub',
href: Settings.GITHUB_URL,
tooltipMessage: 'Show us some love on GitHub',
tooltipMessage: 'Show us some love on GitHub',
},
{
displayName: 'Medium',
Expand All @@ -23,11 +23,18 @@ export const SocialMediaData: ISocialMedia[] = [
href: Settings.MEDIUM_URL,
tooltipMessage: 'Read our AI content on Medium',
},
{
displayName: 'YouTube',
imageSrc: '/ico/youtube-logo.png',
imageAlt: 'YouTube',
href: Settings.YOUTUBE_URL,
tooltipMessage: 'Watch our AI tutorials on YouTube'
},
{
displayName: 'Twitch',
imageSrc: '/ico/twitch-logo.png',
imageAlt: 'Twitch',
href: Settings.TWITCH_URL,
tooltipMessage: 'Watch as we build Make Sense right in front your eyes on Twitch'
tooltipMessage: 'Fight along with us in Kaggle competitions on Twitch'
},
];
1 change: 1 addition & 0 deletions src/settings/Settings.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ export class Settings {
public static readonly GITHUB_URL: string = 'https://github.com/SkalskiP';
public static readonly MEDIUM_URL: string = 'https://medium.com/@piotr.skalski92';
public static readonly TWITCH_URL: string = 'https://www.twitch.tv/skalskip';
public static readonly YOUTUBE_URL: string = 'https://www.youtube.com/watch?v=AWjKfjDGiYE';

public static readonly TOP_NAVIGATION_BAR_HEIGHT_PX: number = 35;
public static readonly EDITOR_BOTTOM_NAVIGATION_BAR_HEIGHT_PX: number = 40 + 1;
Expand Down

0 comments on commit 86f75f4

Please sign in to comment.