From 1595c9ee68897f85bc536d1ba3d8652261d43ac0 Mon Sep 17 00:00:00 2001 From: DrunkenTeddy Date: Mon, 2 Jun 2025 12:46:15 -0700 Subject: [PATCH 1/3] Add Cin, Den, Mad, and Nash Logos --- components/TeamLogo.tsx | 13 +- public/team_logos/SHL/Cincinnati.svg | 1 + public/team_logos/SHL/Denver.svg | 294 +++++ public/team_logos/SHL/Madison.svg | 1522 ++++++++++++++++++++++++++ public/team_logos/SHL/Nashville.svg | 265 +++++ 5 files changed, 2092 insertions(+), 3 deletions(-) create mode 100644 public/team_logos/SHL/Cincinnati.svg create mode 100644 public/team_logos/SHL/Denver.svg create mode 100644 public/team_logos/SHL/Madison.svg create mode 100644 public/team_logos/SHL/Nashville.svg diff --git a/components/TeamLogo.tsx b/components/TeamLogo.tsx index 090d7c7c..b190cd30 100644 --- a/components/TeamLogo.tsx +++ b/components/TeamLogo.tsx @@ -68,11 +68,15 @@ const getLogoId = ( return { spriteId: 'CalgaryPreS58', isHistorical: true }; } return 'Calgary'; + case 'CIN': + return 'Cincinnati'; case 'CHI': if (season < 54) { return { spriteId: 'ChicagoPreS54', isHistorical: true }; } return 'Chicago'; + case 'DEN': + return 'Denver'; case 'EDM': if (season < 10) { return { spriteId: 'EdmontonPreS10', isHistorical: true }; @@ -112,6 +116,8 @@ const getLogoId = ( return { spriteId: 'Los_AngelesPreS64', isHistorical: true }; } return 'Los_Angeles'; + case 'MAD': + return 'Madison'; case 'MAN': if (season < 6) { return { spriteId: 'ManhattanPreS6', isHistorical: true }; @@ -145,6 +151,8 @@ const getLogoId = ( return { spriteId: 'MontrealPreS66', isHistorical: true }; } return 'Montreal'; + case 'NSH': + return 'Nashville'; case 'NEW': if (season < 43) { return { spriteId: 'New_EnglandPreS43', isHistorical: true }; @@ -450,9 +458,8 @@ export const TeamLogo = ({ // eslint-disable-next-line @next/next/no-img-element ); }; diff --git a/public/team_logos/SHL/Cincinnati.svg b/public/team_logos/SHL/Cincinnati.svg new file mode 100644 index 00000000..45762965 --- /dev/null +++ b/public/team_logos/SHL/Cincinnati.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/team_logos/SHL/Denver.svg b/public/team_logos/SHL/Denver.svg new file mode 100644 index 00000000..fbba6d2b --- /dev/null +++ b/public/team_logos/SHL/Denver.svg @@ -0,0 +1,294 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/team_logos/SHL/Madison.svg b/public/team_logos/SHL/Madison.svg new file mode 100644 index 00000000..eefbbe90 --- /dev/null +++ b/public/team_logos/SHL/Madison.svg @@ -0,0 +1,1522 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/team_logos/SHL/Nashville.svg b/public/team_logos/SHL/Nashville.svg new file mode 100644 index 00000000..02540ddc --- /dev/null +++ b/public/team_logos/SHL/Nashville.svg @@ -0,0 +1,265 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + From c9a8d400d053383e6421703ead04c91463a121ec Mon Sep 17 00:00:00 2001 From: luketd Date: Mon, 2 Jun 2025 16:54:25 -0400 Subject: [PATCH 2/3] Update shl.stack.svg --- public/stack/shl.stack.svg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/stack/shl.stack.svg b/public/stack/shl.stack.svg index 23511195..fc183fd3 100644 --- a/public/stack/shl.stack.svg +++ b/public/stack/shl.stack.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file From 1423ab24b29804fb08986e87e7610f4f8d5e6650 Mon Sep 17 00:00:00 2001 From: luketd Date: Mon, 2 Jun 2025 17:00:37 -0400 Subject: [PATCH 3/3] Fixed Portland info --- components/TeamLogo.tsx | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/components/TeamLogo.tsx b/components/TeamLogo.tsx index b190cd30..118150e8 100644 --- a/components/TeamLogo.tsx +++ b/components/TeamLogo.tsx @@ -226,7 +226,7 @@ const getLogoId = ( return { spriteId: 'LasVegasKings', isHistorical: true }; } case 'POR': - if (season < 36) { + if (season < 38) { return { spriteId: 'PortlandAdmirals', isHistorical: true }; } case 'TBH': @@ -458,8 +458,9 @@ export const TeamLogo = ({ // eslint-disable-next-line @next/next/no-img-element ); };