Skip to content

Commit c8238fb

Browse files
authored
Merge pull request #285 from iterative/drop-by-iterative
* chore: remove by iterative * chore: bump version
2 parents ff1d111 + ce07e02 commit c8238fb

File tree

4 files changed

+8
-28
lines changed

4 files changed

+8
-28
lines changed

packages/gatsby-theme-iterative/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
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",

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

-4
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ import studioLogo from '../../images/studio_icon-color--square_vector.svg'
1717
import mlemLogo from '../../images/mlem-icon.svg'
1818

1919
import * as styles from './styles.module.css'
20-
import LogoGradient from '../LogoGradient'
2120

2221
const 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}>

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

-18
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ import cn from 'classnames'
44
import LayoutWidthContainer from '../LayoutWidthContainer'
55
import Link from '../Link'
66
import SocialIcon, { ISocialIcon } from '../SocialIcon'
7-
import ShowOnly from '../ShowOnly'
87
import { getFirstPage } from '../../utils/shared/sidebar'
98

109
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
1615
import { ReactComponent as MlemSVG } from '../../images/mlem-icon.svg'
1716

1817
import * as styles from './styles.module.css'
19-
import LogoGradient from '../LogoGradient'
2018

2119
const 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 numberDiff line numberDiff line change
@@ -1,15 +1,17 @@
11
import Link from '../../Link'
22
import { ReactComponent as LogoSVG } from '../../../images/dvc_icon-color--square_vector.svg'
33
import * as styles from './styles.module.css'
4-
import LogoGradient from '../../LogoGradient'
4+
import cn from 'classnames'
55

66
export 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
)

0 commit comments

Comments
 (0)