diff --git a/src/app/(features)/memorize/Memorize.tsx b/src/app/(features)/memorize/Memorize.tsx index c746d4e..5b8b4f1 100644 --- a/src/app/(features)/memorize/Memorize.tsx +++ b/src/app/(features)/memorize/Memorize.tsx @@ -9,6 +9,11 @@ import { useAudioPlayer } from "@/hooks/useAudioPlayer"; import { getTTSAudioUrl } from "@/lib/browser/tts"; import { VOICES } from "@/config/locales"; import { useTranslations } from "next-intl"; +import localFont from "next/font/local"; + +const myFont = localFont({ + src: "../../../../public/fonts/NotoNaskhArabic-VariableFont_wght.ttf", +}); interface MemorizeProps { textPairs: text_pair[]; @@ -43,7 +48,7 @@ const Memorize: React.FC = ({ textPairs }) => { {(getTextPairs().length > 0 && ( <> -
+
{t("progress", { current: index + 1,