From 8687b38f023e603020857a02671edf78456a8cbf Mon Sep 17 00:00:00 2001 From: Carey Gumaer Date: Fri, 9 Aug 2024 15:39:00 -0400 Subject: [PATCH] add new svg logo --- .../mit-learn/public/images/mit-logo-learn.svg | 18 ++++++++++++++++++ .../src/components/MITLogoLink.tsx | 2 +- 2 files changed, 19 insertions(+), 1 deletion(-) create mode 100644 frontends/mit-learn/public/images/mit-logo-learn.svg diff --git a/frontends/mit-learn/public/images/mit-logo-learn.svg b/frontends/mit-learn/public/images/mit-logo-learn.svg new file mode 100644 index 0000000000..14878e5100 --- /dev/null +++ b/frontends/mit-learn/public/images/mit-logo-learn.svg @@ -0,0 +1,18 @@ + + + + + + + + diff --git a/frontends/ol-utilities/src/components/MITLogoLink.tsx b/frontends/ol-utilities/src/components/MITLogoLink.tsx index f2cb5fee79..42bbb33a97 100644 --- a/frontends/ol-utilities/src/components/MITLogoLink.tsx +++ b/frontends/ol-utilities/src/components/MITLogoLink.tsx @@ -2,7 +2,7 @@ import React from "react" const PUBLIC_URL = APP_SETTINGS.PUBLIC_URL const HOME_URL = `${PUBLIC_URL}/` -const MIT_LOGO_URL = `${PUBLIC_URL}/static/images/mit-logo-transparent4.svg` +const MIT_LOGO_URL = `${PUBLIC_URL}/static/images/mit-logo-learn.svg` interface Props { href?: string