diff --git a/newIDE/app/src/MainFrame/EditorContainers/HomePage/CommunitySection.js b/newIDE/app/src/MainFrame/EditorContainers/HomePage/CommunitySection.js index 316207785883..63b6bb95610d 100644 --- a/newIDE/app/src/MainFrame/EditorContainers/HomePage/CommunitySection.js +++ b/newIDE/app/src/MainFrame/EditorContainers/HomePage/CommunitySection.js @@ -11,6 +11,7 @@ import Reddit from '../../../UI/CustomSvgIcons/Reddit'; import Twitter from '../../../UI/CustomSvgIcons/Twitter'; import Facebook from '../../../UI/CustomSvgIcons/Facebook'; import TikTok from '../../../UI/CustomSvgIcons/TikTok'; +import GitHub from '../../../UI/CustomSvgIcons/GitHub'; import SectionContainer, { SectionRow } from './SectionContainer'; import { ListItem } from '../../../UI/List'; import List from '@material-ui/core/List'; @@ -64,6 +65,11 @@ const communityItems = [ icon: , label: TikTok, }, + { + onClick: () => Window.openExternalURL('https://github.com/4ian/GDevelop'), + icon: , + label: GitHub, + }, ]; const CommunitySection = () => {