Skip to content

Commit

Permalink
Add n12 org logo (#1031)
Browse files Browse the repository at this point in the history
  • Loading branch information
shaked-hayek committed Feb 7, 2024
1 parent 0c7907f commit db276f7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
Binary file added src/assets/n12Logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
6 changes: 4 additions & 2 deletions src/const/cards.const.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import { WidgetName } from 'models/WidgetName';
import orYarokLogo from 'assets/greenlight.png';
import n12Logo from 'assets/n12Logo.png';

// cards in this list will be available for operation environments (all non-staging environments)
export const operationalCards: WidgetName[] = [
Expand All @@ -18,7 +19,8 @@ export const operationalCards: WidgetName[] = [

export type OrgLogoData = {key : string, path:string} ;

export const logosSourceMap : [OrgLogoData] = [
{key:'or_yarok',path:orYarokLogo}
export const logosSourceMap : OrgLogoData[] = [
{key: 'or_yarok', path: orYarokLogo},
{key: 'n12', path: n12Logo},
]

0 comments on commit db276f7

Please sign in to comment.