From 46e1b33bdf8dc5012b3ce3208b56d836bbda6175 Mon Sep 17 00:00:00 2001 From: Austin Chen Date: Sun, 3 Jul 2022 17:03:40 -0700 Subject: [PATCH] Show Atlas logo --- common/envs/atlas2.ts | 2 +- web/components/nav/manifold-logo.tsx | 21 ++++++++++++++------- web/public/atlas/atlas-logo-white.svg | 1 + 3 files changed, 16 insertions(+), 8 deletions(-) create mode 100644 web/public/atlas/atlas-logo-white.svg diff --git a/common/envs/atlas2.ts b/common/envs/atlas2.ts index 7e28b576..18eb9891 100644 --- a/common/envs/atlas2.ts +++ b/common/envs/atlas2.ts @@ -20,7 +20,7 @@ export const ATLAS2_CONFIG: EnvConfig = { fixedAnte: 25, startingBalance: 500, visibility: 'PRIVATE', - // navbarLogoPath: '/atlas/atlas-logo-white.svg', + 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