Skip to content
This repository was archived by the owner on Apr 23, 2025. It is now read-only.

Remove MLEM mentions #488

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ import { ReactComponent as IterativeIcon } from '@media/icons/iterative.svg'
import dvcIcon from '@media/icons/dvc.svg'
import cmlIcon from '@media/icons/cml.svg'
import studioIcon from '@media/icons/studio.svg'
import mlemIcon from '@media/icons/mlem.svg'

interface ISocialLinkPopupProps {
url: string
Expand Down Expand Up @@ -99,18 +98,6 @@ const footerLists: Array<IFooterListPopupProps> = [
),
url: 'https://studio.iterative.ai/'
},
{
text: 'MLEM',
icon: (
<Box
as="span"
sx={{
backgroundImage: `url("${mlemIcon}")`
}}
/>
),
url: 'https://mlem.ai/'
},
{
text: 'VS Code Extension',
icon: <Box as="span" sx={{ backgroundImage: `url("${dvcIcon}")` }} />,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ import { ReactComponent as DownIcon } from '@media/icons/down.svg'
import { ReactComponent as CmlIcon } from '@media/icons/cml.svg'
import { ReactComponent as DvcIcon } from '@media/icons/dvc.svg'
import { ReactComponent as StudioIcon } from '@media/icons/studio.svg'
import { ReactComponent as MlemIcon } from '@media/icons/mlem.svg'
import { ReactComponent as ExternalLinkIcon } from '@media/icons/external-link.svg'
import { ReactComponent as VsCodeIcon } from '@media/icons/vscode.svg'

Expand Down Expand Up @@ -94,13 +93,6 @@ const otherToolsItems: Array<IOtherToolsItem> = [
icon: <CmlIcon width="24" height="24" />,
description: 'Open-source CI/CD for ML projects',
href: '/'
},
{
title: 'MLEM',
icon: <MlemIcon width="24" height="24" />,
description:
'Open-source model registry and deployment tool for ML projects',
href: 'https://mlem.ai'
}
]

Expand Down
8 changes: 0 additions & 8 deletions src/components/molecules/HamburgerMenu/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -183,14 +183,6 @@ export const HamburgerMenu: React.FC<
<span className={styles.subSectionLinkTitle}>CML</span>
</Link>
</li>
<li className={styles.subSection}>
<Link href="https://mlem.ai/" className={styles.subSectionLink}>
<div
className={cn(styles.subSectionLinkImage, styles.bgImgMlem)}
/>
<span className={styles.subSectionLinkTitle}>MLEM</span>
</Link>
</li>
<li className={styles.subSection}>
<Link
href="https://marketplace.visualstudio.com/items?itemName=Iterative.dvc"
Expand Down
4 changes: 0 additions & 4 deletions src/components/molecules/HamburgerMenu/styles.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -198,10 +198,6 @@ a.sectionHeading {
&Studio {
background-image: url('../../../media/icons/studio.svg');
}

&Mlem {
background-image: url('../../../media/icons/mlem.svg');
}
}

.subSectionLinkTitle {
Expand Down