Skip to content

Commit

Permalink
remove medium
Browse files Browse the repository at this point in the history
  • Loading branch information
raulfdm committed Aug 16, 2024
1 parent f4542b9 commit 7dba639
Show file tree
Hide file tree
Showing 5 changed files with 0 additions and 16 deletions.
1 change: 0 additions & 1 deletion website/astro.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ const { VERCEL_ENV, VERCEL_URL } = loadEnv(

const assetsDomains: string[] = [
`res.cloudinary.com`,
`miro.medium.com`,
`media.giphy.com`,
`cdn.sanity.io`,
`sanity.io`,
Expand Down
1 change: 0 additions & 1 deletion website/src/infrastructure/i18n/locales/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,6 @@
"devToLinkTitle": "Dev.to profile",
"githubLinkTitle": "GitHub profile",
"linkedInLinkTitle": "LinkedIn profile",
"mediumLinkTitle": "Medium profile",
"twitterLinkTitle": "Twitter profile"
},
"cv": {
Expand Down
1 change: 0 additions & 1 deletion website/src/infrastructure/i18n/locales/pt.json
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,6 @@
"devToLinkTitle": "Perfil no Dev.to",
"githubLinkTitle": "Perfil no GitHub",
"linkedInLinkTitle": "Perfil no LinkedIn",
"mediumLinkTitle": "Perfil no Medium",
"twitterLinkTitle": "Perfil no Twitter"
},
"cv": {
Expand Down
11 changes: 0 additions & 11 deletions website/src/ui/AuthorPresentation/AuthorPresentation.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@
import {
IconBrandGithub,
IconBrandLinkedin,
IconBrandMedium,
IconBrandX,
} from '../icons-svelte';
import type { QuerySiteDataReturnType } from '@/infrastructure/api/modules/siteData';
Expand All @@ -26,7 +25,6 @@
const twitter = getSocial(`twitter`, siteData);
const linkedIn = getSocial(`linkedin`, siteData);
const devTo = getSocial(`dev.to`, siteData);
const medium = getSocial(`medium`, siteData);
</script>

<header
Expand Down Expand Up @@ -57,15 +55,6 @@
>
<DevToIcon size={32} stroke={1.5} />
</IconWrapper>
<IconWrapper
href={medium.url}
data-testid="author__linkedInUrl"
title={intl.formatMessage({
id: `authorPresentation.mediumLinkTitle`,
})}
>
<IconBrandMedium size={32} stroke={1.5} />
</IconWrapper>
<IconWrapper
href={github.url}
data-testid="author__githubUrl"
Expand Down
2 changes: 0 additions & 2 deletions website/src/ui/icons-svelte.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
import IconArrowNarrowRight from '@tabler/icons-svelte/dist/svelte/icons/IconArrowNarrowRight.svelte';
import IconBrandGithub from '@tabler/icons-svelte/dist/svelte/icons/IconBrandGithub.svelte';
import IconBrandLinkedin from '@tabler/icons-svelte/dist/svelte/icons/IconBrandLinkedin.svelte';
import IconBrandMedium from '@tabler/icons-svelte/dist/svelte/icons/IconBrandMedium.svelte';
import IconBrandX from '@tabler/icons-svelte/dist/svelte/icons/IconBrandX.svelte';
import IconChevronDown from '@tabler/icons-svelte/dist/svelte/icons/IconChevronDown.svelte';
import IconClipboard from '@tabler/icons-svelte/dist/svelte/icons/IconClipboard.svelte';
Expand All @@ -19,7 +18,6 @@ export {
IconArrowNarrowRight,
IconBrandGithub,
IconBrandLinkedin,
IconBrandMedium,
IconBrandX,
IconChevronDown,
IconClipboard,
Expand Down

0 comments on commit 7dba639

Please sign in to comment.