From f4c7148e7e228527b46936e8eb518087e83e9ecd Mon Sep 17 00:00:00 2001 From: Austin Chen Date: Tue, 14 Jun 2022 03:13:10 -0700 Subject: [PATCH] Design in the Atlas logo --- common/envs/atlas.ts | 4 ++-- web/components/nav/manifold-logo.tsx | 21 ++++++++++++++------- web/public/atlas/atlas-logo-white.svg | 1 + 3 files changed, 17 insertions(+), 9 deletions(-) create mode 100644 web/public/atlas/atlas-logo-white.svg diff --git a/common/envs/atlas.ts b/common/envs/atlas.ts index 94c71a5f..10ef2334 100644 --- a/common/envs/atlas.ts +++ b/common/envs/atlas.ts @@ -23,8 +23,8 @@ export const ATLAS_CONFIG: EnvConfig = { moneyMoniker: 'A$', startingBalance: 5000, visibility: 'PRIVATE', - faviconPath: '/atlas/atlas-favicon.png', - navbarLogoPath: '', + // faviconPath: '/atlas/atlas-favicon.png', + navbarLogoPath: '/atlas/atlas-logo-white.svg', newQuestionPlaceholders: [ 'Will we have at least 5 new team members by the end of this quarter?', 'Will we meet or exceed our goals this sprint?', diff --git a/web/components/nav/manifold-logo.tsx b/web/components/nav/manifold-logo.tsx index ec15d54b..35a68f39 100644 --- a/web/components/nav/manifold-logo.tsx +++ b/web/components/nav/manifold-logo.tsx @@ -17,16 +17,23 @@ export function ManifoldLogo(props: { return ( - + {!ENV_CONFIG.navbarLogoPath && ( + + )} {!hideText && (ENV_CONFIG.navbarLogoPath ? ( - + ) : twoLine ? (
\ No newline at end of file