diff --git a/src/templates/Price.tsx b/src/templates/Price.tsx
index 48dbd9d..4ecff66 100644
--- a/src/templates/Price.tsx
+++ b/src/templates/Price.tsx
@@ -8,6 +8,7 @@ import clsx from "clsx";
import Navbar from "@/components/Navbar";
import Link from "next/link";
import Footer from "@/components/Footer";
+import translation from "@/translation/price.json";
type DurationUnit = "weeks" | "days" | "months" | "years";
@@ -46,7 +47,7 @@ export default function Page({ language }: { language: "en" | "ar" }) {
- Available Packages
+ {translation.title[language]}
{payments.map((p) => (
-
This includes:
+
{translation.packageIncludes[language]}
- - - Train your abilities for the IELTS exam
- - - Gain insights into your weaknesses and strengths
- - - Allow yourself to correctly prepare for the exam
+ - - {translation.packageIncludesA[language]}
+ - - {translation.packageIncludesB[language]}
+ - - {translation.packageIncludesC[language]}
@@ -92,7 +93,7 @@ export default function Page({ language }: { language: "en" | "ar" }) {
className="transition ease-in-out duration-300 text-white hover:bg-mti-purple-dark hover:border-mti-purple-dark border border-mti-purple-light bg-mti-purple-light px-8 py-2 rounded-xl mb-8"
href={`${process.env.NEXT_PUBLIC_APP_URL}/register`}
>
- Join us
+ {translation.joinus[language]}
diff --git a/src/translation/price.json b/src/translation/price.json
new file mode 100644
index 0000000..79d7f9a
--- /dev/null
+++ b/src/translation/price.json
@@ -0,0 +1,26 @@
+{
+ "joinus": {
+ "en": "Join us",
+ "ar": "Join us"
+ },
+ "title": {
+ "en": "Available Packages",
+ "ar": "Available Packages"
+ },
+ "packageIncludes": {
+ "en": "This includes:",
+ "ar": "This includes:"
+ },
+ "packageIncludesA": {
+ "en": "Train your abilities for the IELTS exam",
+ "ar": "Train your abilities for the IELTS exam"
+ },
+ "packageIncludesB": {
+ "en": "Gain insights into your weaknesses and strengths",
+ "ar": "Gain insights into your weaknesses and strengths"
+ },
+ "packageIncludesC": {
+ "en": "Allow yourself to correctly prepare for the exam",
+ "ar": "Allow yourself to correctly prepare for the exam"
+ }
+}