File tree Expand file tree Collapse file tree 4 files changed +8
-28
lines changed
packages/gatsby-theme-iterative
LayoutHeader/HeaderBranding Expand file tree Collapse file tree 4 files changed +8
-28
lines changed Original file line number Diff line number Diff line change 11{
22 "name" : " @dvcorg/gatsby-theme-iterative" ,
3- "version" : " 0.3.23 " ,
3+ "version" : " 0.3.24 " ,
44 "description" : " " ,
55 "main" : " index.js" ,
66 "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'
1717import mlemLogo from '../../images/mlem-icon.svg'
1818
1919import * as styles from './styles.module.css'
20- import LogoGradient from '../LogoGradient'
2120
2221const docsPage = getFirstPage ( )
2322
@@ -76,9 +75,6 @@ export const HamburgerMenu: React.FC<
7675 >
7776 < LogoSVG />
7877 </ Link >
79- < LogoGradient className = "mr-auto" >
80- by < span className = "font-extrabold" > Iterative</ span >
81- </ LogoGradient >
8278 </ div >
8379 < ul className = { styles . sections } >
8480 < li className = { styles . section } >
Original file line number Diff line number Diff line change @@ -4,7 +4,6 @@ import cn from 'classnames'
44import LayoutWidthContainer from '../LayoutWidthContainer'
55import Link from '../Link'
66import SocialIcon , { ISocialIcon } from '../SocialIcon'
7- import ShowOnly from '../ShowOnly'
87import { getFirstPage } from '../../utils/shared/sidebar'
98
109import { 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
1615import { ReactComponent as MlemSVG } from '../../images/mlem-icon.svg'
1716
1817import * as styles from './styles.module.css'
19- import LogoGradient from '../LogoGradient'
2018
2119const docsPage = getFirstPage ( )
2220
@@ -187,22 +185,6 @@ const LayoutFooter: React.FC = () => (
187185 </ div >
188186 < FooterLists />
189187 < 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 >
206188 < FooterSocialIcons />
207189 </ div >
208190 </ LayoutWidthContainer >
Original file line number Diff line number Diff line change 11import Link from '../../Link'
22import { ReactComponent as LogoSVG } from '../../../images/dvc_icon-color--square_vector.svg'
33import * as styles from './styles.module.css'
4- import LogoGradient from '../../LogoGradient '
4+ import cn from 'classnames '
55
66export const HeaderBranding = ( ) => (
77 < >
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+ >
914 < LogoSVG className = { styles . logo } />
1015 </ Link >
11- < LogoGradient className = "mr-auto text-sm" href = "https://dvc.ai/" >
12- by < span className = "font-extrabold" > Iterative</ span >
13- </ LogoGradient >
1416 </ >
1517)
You can’t perform that action at this time.
0 commit comments