diff --git a/components/Header/Language/index.tsx b/components/Header/Language/index.tsx
index 8555cd6..8641e97 100644
--- a/components/Header/Language/index.tsx
+++ b/components/Header/Language/index.tsx
@@ -1,3 +1,5 @@
+'use client'
+
import { useCallback, useEffect, useState, useRef } from 'react'
import useTranslation from 'next-translate/useTranslation'
import setLanguage from 'next-translate/setLanguage'
@@ -61,7 +63,7 @@ export const Language: React.FC = () => {
>
{i18n.locales.map((language, index) => {
if (language === currentLanguage) {
- return null
+ return <>>
}
return (
{
{
/>
diff --git a/components/Portfolio/PortfolioItem.tsx b/components/Portfolio/PortfolioItem.tsx
index fb0e393..1e29306 100644
--- a/components/Portfolio/PortfolioItem.tsx
+++ b/components/Portfolio/PortfolioItem.tsx
@@ -1,6 +1,6 @@
import Image from 'next/image'
-import { ShadowContainer } from 'components/design/ShadowContainer'
+import { ShadowContainer } from '@/components/design/ShadowContainer'
export interface PortfolioItemProps {
title: string
diff --git a/components/Profile/ProfileList/index.tsx b/components/Profile/ProfileList/index.tsx
index b1562b3..d19e4ef 100644
--- a/components/Profile/ProfileList/index.tsx
+++ b/components/Profile/ProfileList/index.tsx
@@ -1,7 +1,9 @@
+'use client'
+
import useTranslation from 'next-translate/useTranslation'
import { useMemo } from 'react'
-import { BIRTH_DATE, BIRTH_DATE_STRING, getAge } from 'utils/getAge'
+import { BIRTH_DATE, BIRTH_DATE_STRING, getAge } from '@/utils/getAge'
import { ProfileItem } from './ProfileItem'
diff --git a/components/Profile/SocialMediaList/index.tsx b/components/Profile/SocialMediaList/index.tsx
index 83ddddf..852d03a 100644
--- a/components/Profile/SocialMediaList/index.tsx
+++ b/components/Profile/SocialMediaList/index.tsx
@@ -16,7 +16,7 @@ export const SocialMediaList: React.FC = () => {
-
+
= (props) => {
diff --git a/components/design/Section/index.tsx b/components/design/Section/index.tsx
index a2abf15..5b9b144 100644
--- a/components/design/Section/index.tsx
+++ b/components/design/Section/index.tsx
@@ -1,5 +1,5 @@
-import { ShadowContainer } from '../ShadowContainer'
-import { SectionHeading } from './SectionHeading'
+import { ShadowContainer } from '@/components/design/ShadowContainer'
+import { SectionHeading } from '@/components/design/Section/SectionHeading'
type SectionProps = React.ComponentPropsWithRef<'section'> & {
heading?: string
diff --git a/cypress/component/utils/getAge.cy.ts b/cypress/component/utils/getAge.cy.ts
index 9904c4e..4892afb 100644
--- a/cypress/component/utils/getAge.cy.ts
+++ b/cypress/component/utils/getAge.cy.ts
@@ -1,4 +1,4 @@
-import { getAge } from '../../../utils/getAge'
+import { getAge } from '@/utils/getAge'
describe('utils/getAge', () => {
it('should calculate the right age of a person', () => {