diff --git a/src/pages/_components/Intro/Intro.tsx b/src/pages/_components/Intro/Intro.tsx index 97f1530..db753a4 100644 --- a/src/pages/_components/Intro/Intro.tsx +++ b/src/pages/_components/Intro/Intro.tsx @@ -8,7 +8,7 @@ import Box from "@components/atoms/Box"; import Button from "@components/atoms/Button"; import Typography from "@components/atoms/Typography"; -import i18n from "@utils/i18n"; +import { matchSupportLanguage } from "@utils/i18n"; import { ImageBox, StyledIntro, SubTitle, Title, TitleBox, ImageRatioBox } from "./Intro.styles"; @@ -19,7 +19,7 @@ const PlandyMockupImage = { }; function Intro() { - const { t } = useTranslation(); + const { i18n, t } = useTranslation(); return ( @@ -30,7 +30,11 @@ function Intro() {