File tree 4 files changed +8
-28
lines changed
packages/gatsby-theme-iterative
LayoutHeader/HeaderBranding
4 files changed +8
-28
lines changed Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @dvcorg/gatsby-theme-iterative" ,
3
- "version" : " 0.3.23 " ,
3
+ "version" : " 0.3.24 " ,
4
4
"description" : " " ,
5
5
"main" : " index.js" ,
6
6
"types" : " src/typings.d.ts" ,
Original file line number Diff line number Diff line change @@ -17,7 +17,6 @@ import studioLogo from '../../images/studio_icon-color--square_vector.svg'
17
17
import mlemLogo from '../../images/mlem-icon.svg'
18
18
19
19
import * as styles from './styles.module.css'
20
- import LogoGradient from '../LogoGradient'
21
20
22
21
const docsPage = getFirstPage ( )
23
22
@@ -76,9 +75,6 @@ export const HamburgerMenu: React.FC<
76
75
>
77
76
< LogoSVG />
78
77
</ Link >
79
- < LogoGradient className = "mr-auto" >
80
- by < span className = "font-extrabold" > Iterative</ span >
81
- </ LogoGradient >
82
78
</ div >
83
79
< ul className = { styles . sections } >
84
80
< li className = { styles . section } >
Original file line number Diff line number Diff line change @@ -4,7 +4,6 @@ import cn from 'classnames'
4
4
import LayoutWidthContainer from '../LayoutWidthContainer'
5
5
import Link from '../Link'
6
6
import SocialIcon , { ISocialIcon } from '../SocialIcon'
7
- import ShowOnly from '../ShowOnly'
8
7
import { getFirstPage } from '../../utils/shared/sidebar'
9
8
10
9
import { ReactComponent as LogoSVG } from '../../images/dvc_icon-color--square_vector.svg'
@@ -16,7 +15,6 @@ import { ReactComponent as StudioSVG } from '../../images/studio_icon-color--squ
16
15
import { ReactComponent as MlemSVG } from '../../images/mlem-icon.svg'
17
16
18
17
import * as styles from './styles.module.css'
19
- import LogoGradient from '../LogoGradient'
20
18
21
19
const docsPage = getFirstPage ( )
22
20
@@ -187,22 +185,6 @@ const LayoutFooter: React.FC = () => (
187
185
</ div >
188
186
< FooterLists />
189
187
< div className = { styles . bottomRow } >
190
- < p className = { styles . companyLabel } >
191
- By{ ' ' }
192
- < LogoGradient className = "font-extrabold mr-1" href = "https://dvc.ai" >
193
- Iterative
194
- </ LogoGradient >
195
- < span className = { styles . companyDescription } >
196
- < ShowOnly as = "span" on = "desktop" >
197
- { ' ' }
198
- - an open platform to operationalize AI
199
- </ ShowOnly >
200
- < ShowOnly as = "span" on = "mobile" >
201
- { ' ' }
202
- An open platform to operationalize AI
203
- </ ShowOnly >
204
- </ span >
205
- </ p >
206
188
< FooterSocialIcons />
207
189
</ div >
208
190
</ LayoutWidthContainer >
Original file line number Diff line number Diff line change 1
1
import Link from '../../Link'
2
2
import { ReactComponent as LogoSVG } from '../../../images/dvc_icon-color--square_vector.svg'
3
3
import * as styles from './styles.module.css'
4
- import LogoGradient from '../../LogoGradient '
4
+ import cn from 'classnames '
5
5
6
6
export const HeaderBranding = ( ) => (
7
7
< >
8
- < Link href = "/" className = { styles . logoLink } title = "DVC" aria-label = "DVC" >
8
+ < Link
9
+ href = "/"
10
+ className = { cn ( styles . logoLink , 'mr-auto' ) }
11
+ title = "DVC"
12
+ aria-label = "DVC"
13
+ >
9
14
< LogoSVG className = { styles . logo } />
10
15
</ Link >
11
- < LogoGradient className = "mr-auto text-sm" href = "https://dvc.ai/" >
12
- by < span className = "font-extrabold" > Iterative</ span >
13
- </ LogoGradient >
14
16
</ >
15
17
)
You can’t perform that action at this time.
0 commit comments