Skip to content

Commit

Permalink
Merge pull request #285 from iterative/drop-by-iterative
Browse files Browse the repository at this point in the history
* chore: remove by iterative

* chore: bump version
  • Loading branch information
yathomasi authored Dec 11, 2024
2 parents ff1d111 + ce07e02 commit c8238fb
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 28 deletions.
2 changes: 1 addition & 1 deletion packages/gatsby-theme-iterative/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@dvcorg/gatsby-theme-iterative",
"version": "0.3.23",
"version": "0.3.24",
"description": "",
"main": "index.js",
"types": "src/typings.d.ts",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ import studioLogo from '../../images/studio_icon-color--square_vector.svg'
import mlemLogo from '../../images/mlem-icon.svg'

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

const docsPage = getFirstPage()

Expand Down Expand Up @@ -76,9 +75,6 @@ export const HamburgerMenu: React.FC<
>
<LogoSVG />
</Link>
<LogoGradient className="mr-auto">
by <span className="font-extrabold">Iterative</span>
</LogoGradient>
</div>
<ul className={styles.sections}>
<li className={styles.section}>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ import cn from 'classnames'
import LayoutWidthContainer from '../LayoutWidthContainer'
import Link from '../Link'
import SocialIcon, { ISocialIcon } from '../SocialIcon'
import ShowOnly from '../ShowOnly'
import { getFirstPage } from '../../utils/shared/sidebar'

import { ReactComponent as LogoSVG } from '../../images/dvc_icon-color--square_vector.svg'
Expand All @@ -16,7 +15,6 @@ import { ReactComponent as StudioSVG } from '../../images/studio_icon-color--squ
import { ReactComponent as MlemSVG } from '../../images/mlem-icon.svg'

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

const docsPage = getFirstPage()

Expand Down Expand Up @@ -187,22 +185,6 @@ const LayoutFooter: React.FC = () => (
</div>
<FooterLists />
<div className={styles.bottomRow}>
<p className={styles.companyLabel}>
By{' '}
<LogoGradient className="font-extrabold mr-1" href="https://dvc.ai">
Iterative
</LogoGradient>
<span className={styles.companyDescription}>
<ShowOnly as="span" on="desktop">
{' '}
- an open platform to operationalize AI
</ShowOnly>
<ShowOnly as="span" on="mobile">
{' '}
An open platform to operationalize AI
</ShowOnly>
</span>
</p>
<FooterSocialIcons />
</div>
</LayoutWidthContainer>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,15 +1,17 @@
import Link from '../../Link'
import { ReactComponent as LogoSVG } from '../../../images/dvc_icon-color--square_vector.svg'
import * as styles from './styles.module.css'
import LogoGradient from '../../LogoGradient'
import cn from 'classnames'

export const HeaderBranding = () => (
<>
<Link href="/" className={styles.logoLink} title="DVC" aria-label="DVC">
<Link
href="/"
className={cn(styles.logoLink, 'mr-auto')}
title="DVC"
aria-label="DVC"
>
<LogoSVG className={styles.logo} />
</Link>
<LogoGradient className="mr-auto text-sm" href="https://dvc.ai/">
by <span className="font-extrabold">Iterative</span>
</LogoGradient>
</>
)

0 comments on commit c8238fb

Please sign in to comment.