+
-
- {t("about.story.mission.title")}
+
+ {t("about.story.mission.title")}
-
+
{t("about.story.mission.description")}
diff --git a/components/pages/about/whyChooseUs.tsx b/components/pages/about/whyChooseUs.tsx
index 2c5baa8..798ebb3 100644
--- a/components/pages/about/whyChooseUs.tsx
+++ b/components/pages/about/whyChooseUs.tsx
@@ -23,20 +23,20 @@ export function WhyChooseUs() {
-
+
{t("about.whyChoose.title")}
{t("about.whyChoose.subtitle")}
{/* Description */}
-
+
{t("about.whyChoose.description")}
@@ -47,7 +47,7 @@ export function WhyChooseUs() {
-
+
{feature.title}
@@ -56,7 +56,7 @@ export function WhyChooseUs() {
{/* CTA Button */}
-
@@ -86,7 +86,7 @@ export function WhyChooseUs() {
className="h-24 w-24 sm:h-20 sm:w-20"
/>
-
+
{t("about.whyChoose.award")}
diff --git a/components/pages/contact/contactHeader.tsx b/components/pages/contact/contactHeader.tsx
index e0f9f90..6607286 100644
--- a/components/pages/contact/contactHeader.tsx
+++ b/components/pages/contact/contactHeader.tsx
@@ -8,17 +8,17 @@ export default function ContactHeader() {
-
+
{t("contact.banner.title")}
{t("contact.banner.subtitle")}
-
+
{t("contact.banner.description")}
diff --git a/components/pages/contact/form.tsx b/components/pages/contact/form.tsx
index 5ad961a..ad29cb1 100644
--- a/components/pages/contact/form.tsx
+++ b/components/pages/contact/form.tsx
@@ -129,12 +129,13 @@ export default function Form() {
placeholder={t("contact.form.placeholders.firstName")}
value={formData.firstName}
onChange={handleChange}
- className={`w-full rounded-3xl border bg-white px-4 py-3 text-sm text-gray-700 placeholder-gray-400 outline-none transition focus:ring-2 focus:ring-red-500 ${
+ className={`font-almarai w-full rounded-3xl border bg-white px-4 py-3 text-sm
+ text-gray-700 placeholder-gray-400 outline-none transition focus:ring-2 focus:ring-red-500 ${
errors.firstName ? "border-red-500" : "border-transparent"
}`}
/>
{errors.firstName && (
-
{errors.firstName}
+
{errors.firstName}
)}
@@ -144,12 +145,12 @@ export default function Form() {
placeholder={t("contact.form.placeholders.lastName")}
value={formData.lastName}
onChange={handleChange}
- className={`w-full rounded-3xl border bg-white px-4 py-3 text-sm text-gray-700 placeholder-gray-400 outline-none transition focus:ring-2 focus:ring-red-500 ${
+ className={`font-almarai w-full rounded-3xl border bg-white px-4 py-3 text-sm text-gray-700 placeholder-gray-400 outline-none transition focus:ring-2 focus:ring-red-500 ${
errors.lastName ? "border-red-500" : "border-transparent"
}`}
/>
{errors.lastName && (
-
{errors.lastName}
+
{errors.lastName}
)}