Commit 284f7ca8 authored by Kevin Di Lallo's avatar Kevin Di Lallo
Browse files

added webinar to help menu with descriptive text in landing page + added ETSI logo favicon

parent ba370e4d
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -110,7 +110,7 @@ alertmanager:
  config:
    global:
      resolve_timeout: 5m
      slack_api_url: 'https://hooks.slack.com/services/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'
      slack_api_url: '<slack channel incoming webhook url>'
    route:
      group_by: [Alertname]
      receiver: slack-alerts
+1.12 KiB
Loading image diff...
+1 −0
Original line number Diff line number Diff line
@@ -28,6 +28,7 @@ export const ETSI_PRIVACY_URL = 'https://forge.etsi.org/mec-sandbox-privacy';
export const ETSI_TERMS_OF_USE_URL = 'https://forge.etsi.org/mec-sandbox-terms-and-conditions';
export const ETSI_CONTACT_URL = 'https://www.etsi.org/contact';
export const ETSI_MEC_OVERVIEW_PDF_URL = 'https://www.etsi.org/images/files/technologies/ETSI-MEC-Public-Overview.pdf';
export const ETSI_MEC_SANDBOX_WEBINAR_URL = 'https://mecwiki.etsi.org/index.php?title=MEC_Sandbox_Help#MEC_Sandbox_Concepts_.26_Usage';

export const DASHBOARD_MEC_SANDBOX_URL = HOST_PATH + '/grafana/d/mec-sandbox/mec-sandbox?orgId=1&from=now-24h&to=now&refresh=15s&kiosk=tv&theme=light';
export const DASHBOARD_PLATFORM_ADVANTEDGE_URL = HOST_PATH + '/grafana/d/platform-advantedge/platform-advantedge?orgId=1&from=now-24h&to=now&refresh=15s&kiosk=tv&theme=light';
+1 −1
Original line number Diff line number Diff line
@@ -80,7 +80,7 @@ class HomePageContainer extends Component {
              </p>
              <p>
                Interested to learn more?<br/>
                Sign-in and try-it!
                Follow the help menu links (Webinar, Wiki, Community, etc.) to get started or simply sign-in and try-it!
              </p>
              <p>
                The following resources provide more information on ETSI MEC:<br/>
+8 −0
Original line number Diff line number Diff line
@@ -30,6 +30,7 @@ import {
  STATUS_SIGNED_IN,
  DIALOG_HELP_GETTING_STARTED,
  WIKI_HELP_URL,
  ETSI_MEC_SANDBOX_WEBINAR_URL,
  WIKI_DISCUSSION_BOARD_URL,
  WIKI_REPORT_ISSUE_URL,
  DASHBOARD_MEC_SANDBOX_URL,
@@ -198,6 +199,13 @@ class TopBarContainer extends Component {
                        >
                          <Typography use="body1">Getting started</Typography>
                        </MenuItem>
                        <MenuItem
                          onClick={() => {
                            window.open(ETSI_MEC_SANDBOX_WEBINAR_URL,'_blank');
                          }}
                        >
                          <Typography use="body1">Webinar</Typography>
                        </MenuItem>
                        <MenuItem
                          onClick={() => {
                            window.open(WIKI_HELP_URL,'_blank');
Loading