From 55cf710ef5bd90f2a25a517ac3d7e257018c089c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Aur=C3=A9lien=20Vivet?= Date: Thu, 3 Oct 2024 17:39:11 +0200 Subject: [PATCH] Add GitHub url to community tab (#7008) --- .../MainFrame/EditorContainers/HomePage/CommunitySection.js | 6 ++++++ 1 file changed, 6 insertions(+) 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 = () => {