Skip to content

Commit 0dfece1

Browse files
committed
change logo
1 parent 7131a77 commit 0dfece1

File tree

15 files changed

+22
-15
lines changed

15 files changed

+22
-15
lines changed

packages/gatsby-theme/src/components/Documentation/Layout/SidebarMenu/Item/index.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -124,6 +124,7 @@ const SidebarMenuItem: React.FC<ISidebarMenuItemProps> = ({
124124
{parentElement}
125125
{children && (
126126
<span hidden={!isExpanded}>
127+
{/* @ts-expect-error react-collapse types incompatible with React types */}
127128
<Collapse isOpened={!!isExpanded}>
128129
{children.map(item => (
129130
<SidebarMenuItem

packages/gatsby-theme/src/components/HamburgerMenu/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@ import cn from 'classnames'
22
import { useEffect, useState, useCallback, MouseEvent } from 'react'
33

44
import cmlLogo from '../../images/cml_icon-color--square_vector.svg'
5+
import { ReactComponent as LogoSVG } from '../../images/dvc_by_lakefs_white.svg'
56
import dvcLogo from '../../images/dvc_icon-color--square_vector.svg'
67
import discordLogo from '../../images/icon-discord.svg'
78
import mailIcon from '../../images/icon-mail.svg'
8-
import { ReactComponent as LogoSVG } from '../../images/logo-white.svg'
99
import mlemLogo from '../../images/mlem-icon.svg'
1010
import studioLogo from '../../images/studio_icon-color--square_vector.svg'
1111
import { logEvent } from '../../utils/front/plausible'

packages/gatsby-theme/src/components/HamburgerMenu/styles.module.css

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -78,8 +78,6 @@
7878
@apply hover;
7979
@apply active;
8080

81-
width: 40px;
82-
height: 40px;
8381
display: flex;
8482
align-items: center;
8583
justify-content: center;

packages/gatsby-theme/src/components/LayoutFooter/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import cn from 'classnames'
22

33
import { ReactComponent as CmlSVG } from '../../images/cml_icon-color--square_vector.svg'
4-
import { ReactComponent as LogoSVG } from '../../images/dvc_icon-color--square_vector.svg'
4+
import { ReactComponent as LogoSVG } from '../../images/dvc_by_lakefs_white.svg'
55
import { ReactComponent as MlemSVG } from '../../images/mlem-icon.svg'
66
import { ReactComponent as StudioSVG } from '../../images/studio_icon-color--square_vector.svg'
77
import { getFirstPage } from '../../utils/shared/sidebar'

packages/gatsby-theme/src/components/LayoutFooter/styles.module.css

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,6 @@
4747
}
4848

4949
svg {
50-
width: inherit;
5150
height: inherit;
5251
}
5352
}

packages/gatsby-theme/src/components/LayoutHeader/HeaderBranding/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import cn from 'classnames'
22

33
import { MAIN_SITE_URL } from '../../../../consts'
4-
import { ReactComponent as LogoSVG } from '../../../images/dvc_icon-color--square_vector.svg'
4+
import { ReactComponent as LogoSVG } from '../../../images/dvc_by_lakefs.svg'
55
import Link from '../../Link'
66

77
import * as styles from './styles.module.css'

packages/gatsby-theme/src/components/LayoutHeader/HeaderBranding/styles.module.css

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,12 @@
11
.logoLink {
22
@apply hover active;
33

4-
height: 40px;
5-
width: 40px;
6-
74
&:focus {
85
opacity: 0.7;
96
}
107

118
svg {
12-
width: inherit;
9+
width: 100%;
1310
height: inherit;
1411
}
1512
}

packages/gatsby-theme/src/components/SEO/index.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
import { IGatsbyImageData } from 'gatsby-plugin-image'
22
import { useMemo } from 'react'
3-
// eslint-disable-next-line import-x/no-named-as-default
4-
import Helmet from 'react-helmet'
3+
import { Helmet } from 'react-helmet'
54

65
import useSiteMeta from '../../queries/useSiteMeta'
76

@@ -84,6 +83,7 @@ const SEO: React.FC<ISEOProps> = ({
8483
])
8584

8685
return (
86+
/* @ts-expect-error react-helmet types incompatible with React types */
8787
<Helmet
8888
htmlAttributes={{
8989
lang: 'en'

packages/gatsby-theme/src/images/dvc_by_lakefs.svg

Lines changed: 1 addition & 0 deletions
Loading

packages/gatsby-theme/src/images/dvc_by_lakefs_white.svg

Lines changed: 1 addition & 0 deletions
Loading

0 commit comments

Comments
 (0)