Skip to content

Commit 4e3a21a

Browse files
authored
fix: svg logo (#1316)
I am changing the svg to be able to use it without any translation or other css. Grabbed from [Figma](https://www.figma.com/design/5mclPTReHcRIzKbJm8YA6a/VEDA---USWDS?node-id=241-1609&node-type=symbol&t=H3LqNnn3tzAsfBg1-0)! Note: It has some differences to the current logo in the shade of blue it is using, as well as a tiny bit whitespace around it.
2 parents 02e5b61 + 0755ef6 commit 4e3a21a

File tree

5 files changed

+254
-442
lines changed

5 files changed

+254
-442
lines changed

app/scripts/components/common/layout-root/index.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ import { getBannerFromVedaConfig, getCookieConsentFromVedaConfig } from 'veda';
1515
import MetaTags from '../meta-tags';
1616
import PageFooter from '../page-footer';
1717
import PageFooterLegacy from '../page-footer-legacy';
18+
import NasaLogoColor from '../nasa-logo-color';
1819

1920
const Banner = React.lazy(() => import('../banner'));
2021
const CookieConsent = React.lazy(() => import('../cookie-consent'));
@@ -115,6 +116,7 @@ function LayoutRoot(props: { children?: ReactNode }) {
115116
footerPrimaryNavItems
116117
}}
117118
hideFooter={hideFooter}
119+
logoSvg={<NasaLogoColor />}
118120
/>
119121
) : (
120122
<PageFooterLegacy hideFooter={hideFooter} />

0 commit comments

Comments
 (0)