diff --git a/next/components/molecules/Footer.js b/next/components/molecules/Footer.js index fc07a530..86dcbef7 100644 --- a/next/components/molecules/Footer.js +++ b/next/components/molecules/Footer.js @@ -65,7 +65,7 @@ function FooterLink(props) { letterSpacing="0.3px" color="#FFF" target="_blank" - href={`/${locale}${props.href}`} + href={`${props.href}`} {...props} /> ) diff --git a/next/components/organisms/Blog/Slug.js b/next/components/organisms/Blog/Slug.js index e9ca71a8..8f6fb8a4 100644 --- a/next/components/organisms/Blog/Slug.js +++ b/next/components/organisms/Blog/Slug.js @@ -18,6 +18,7 @@ import { Th, Stack, Divider, + Link as ChakraLink, } from "@chakra-ui/react"; import { useTranslation } from 'next-i18next'; import { useRouter } from "next/router"; @@ -192,27 +193,30 @@ export function ShareButtons({ frontmatter }) { return ( - - - + - - + - + ); diff --git a/next/pages/blog/[slug].js b/next/pages/blog/[slug].js index b6aa649a..be266c2d 100644 --- a/next/pages/blog/[slug].js +++ b/next/pages/blog/[slug].js @@ -148,6 +148,7 @@ export default function Post({ slug, locale, mdxSource, headings }) { {frontmatter.categories.map((elm) => { return (