diff --git a/components/Header/Language/index.tsx b/components/Header/Language/index.tsx
index 52a73bf..568e752 100644
--- a/components/Header/Language/index.tsx
+++ b/components/Header/Language/index.tsx
@@ -1,6 +1,7 @@
import { useCallback, useEffect, useState } from 'react'
import useTranslation from 'next-translate/useTranslation'
import setLanguage from 'next-translate/setLanguage'
+import classNames from 'classnames'
import { Arrow } from './Arrow'
import { LanguageFlag } from './LanguageFlag'
@@ -41,27 +42,29 @@ export const Language: React.FC = () => {
- {!hiddenMenu && (
-
- {i18n.locales.map((language, index) => {
- if (language === currentLanguage) {
- return null
- }
- return (
- - await handleLanguage(language)}
- >
-
-
- )
- })}
-
- )}
+
+
+ {i18n.locales.map((language, index) => {
+ if (language === currentLanguage) {
+ return null
+ }
+ return (
+ - await handleLanguage(language)}
+ >
+
+
+ )
+ })}
+
)
}
diff --git a/components/Interests/InterestParagraph.tsx b/components/Interests/InterestParagraph.tsx
index 795d119..abeb69f 100644
--- a/components/Interests/InterestParagraph.tsx
+++ b/components/Interests/InterestParagraph.tsx
@@ -11,7 +11,7 @@ export const InterestParagraph: React.FC = (props) => {
return (
<>
-
+
{title}
diff --git a/components/Profile/ProfileLogo.tsx b/components/Profile/ProfileLogo.tsx
index 337c77c..c04f498 100644
--- a/components/Profile/ProfileLogo.tsx
+++ b/components/Profile/ProfileLogo.tsx
@@ -5,7 +5,7 @@ import DivloLogo from 'public/images/divlo_logo.png'
export const ProfileLogo: React.FC = () => {
return (
-
+
)
}
diff --git a/pages/_app.tsx b/pages/_app.tsx
index 8847ff7..597a8d4 100644
--- a/pages/_app.tsx
+++ b/pages/_app.tsx
@@ -6,7 +6,6 @@ import UniversalCookie from 'universal-cookie'
import 'tailwindcss/tailwind.css'
import '@fontsource/montserrat/400.css'
-import '@fontsource/montserrat/500.css'
import '@fontsource/montserrat/600.css'
const universalCookie = new UniversalCookie()