+
{/* */}
diff --git a/src/i18n/request.js b/src/i18n/request.js
new file mode 100644
index 0000000..85e4ecf
--- /dev/null
+++ b/src/i18n/request.js
@@ -0,0 +1,17 @@
+import {getRequestConfig} from 'next-intl/server';
+import {routing} from './routing';
+
+export default getRequestConfig(async ({requestLocale}) => {
+ // This typically corresponds to the `[locale]` segment
+ let locale = await requestLocale;
+
+ // Ensure that a valid locale is used
+ if (!locale || !routing.locales.includes(locale)) {
+ locale = routing.defaultLocale;
+ }
+
+ return {
+ locale,
+ messages: (await import(`../messages/${locale}.json`)).default
+ };
+});
\ No newline at end of file
diff --git a/src/i18n/routing.js b/src/i18n/routing.js
new file mode 100644
index 0000000..1eca3ac
--- /dev/null
+++ b/src/i18n/routing.js
@@ -0,0 +1,15 @@
+import { defineRouting } from "next-intl/routing";
+import {createNavigation} from 'next-intl/navigation';
+
+
+export const routing = defineRouting({
+ locales: ["en", "ar-OM"],
+ defaultLocale: "en",
+ localePrefix: "as-needed",
+ localeDetection: false,
+});
+
+// Lightweight wrappers around Next.js' navigation APIs
+// that will consider the routing configuration
+export const {Link, redirect, usePathname, useRouter, getPathname} =
+ createNavigation(routing);
diff --git a/src/messages/ar-OM.json b/src/messages/ar-OM.json
new file mode 100644
index 0000000..e7d3220
--- /dev/null
+++ b/src/messages/ar-OM.json
@@ -0,0 +1,28 @@
+{
+ "HomePage": {
+ "AboutUs": {
+ "brandName": "منتجات خدمات الأفق المتقدمة ش.م.م",
+ "description": [
+ "شريكك الموثوق لحلول سلاسل التوريد بالجملة",
+ "خدمات الأفق المتقدمة هي شركة تجارية رائدة متخصصة في حلول سلاسل التوريد بالجملة لمجموعة متنوعة من المنتجات، بما في ذلك المنظفات عالية الجودة والمواد الغذائية. مع سنوات من الخبرة والعلاقات الواسعة في الصناعة، نفخر بالتزامنا بالتميز والموثوقية ورضا العملاء.",
+ "في AHS، نفهم تعقيدات سلسلة التوريد ونسعى لتبسيط العملية لشركائنا. شبكتنا الواسعة من الموردين والمصنعين تمكننا من الحصول على منتجات عالية الجودة بأسعار تنافسية، مما يضمن حصولك على أفضل قيمة لاستثمارك."
+ ]
+ },
+ "Sides": {
+ "title": "اكتشف خبراتنا",
+ "fmcg": {
+ "title": "السلع الاستهلاكية سريعة الحركة",
+ "subtitle": "السلع الاستهلاكية سريعة الحركة",
+ "description": "قسم السلع الاستهلاكية سريعة الحركة لدينا متخصص في توزيع وتسويق المنتجات الاستهلاكية اليومية. نضمن سرعة دوران المنتجات، وسلاسل توريد فعالة، واستراتيجيات تسويقية مبتكرة لتلبية الطلبات المتغيرة باستمرار للمستهلكين."
+ },
+ "construction": {
+ "title": "الإنشاءات",
+ "subtitle": "نبني المستقبل",
+ "description": "ذراع الإنشاءات لدينا مكرس لخلق بنية تحتية دائمة وحلول بناء مبتكرة. من المشاريع السكنية إلى المجمعات التجارية، نقدم الخبرة والجودة والاستدامة في كل مشروع بناء."
+ }
+ }
+ },
+ "Footer": {
+ "address": "مسقط، السيب، موالح الشمالية، شارع الموج، رقم المجمع ٣٥٨، رقم المبنى ١/٢٠٣، مكتب رقم ٥٣، صندوق البريد: ٥٧ء"
+ }
+}
diff --git a/src/messages/en.json b/src/messages/en.json
new file mode 100644
index 0000000..f3af2b5
--- /dev/null
+++ b/src/messages/en.json
@@ -0,0 +1,28 @@
+{
+ "HomePage": {
+ "AboutUs": {
+ "brandName": "ADVANCED HORIZON SERVICES LLC Products",
+ "description": [
+ "Your Trusted Partner in Wholesale Supply Chain Solutions",
+ "Advanced Horizon Services is a leading trade company specializing in wholesale supply chain solutions for a diverse range of products, including high-quality detergents and food items. With years of experience and extensive relations in the industry, we pride ourselves on our commitment to excellence, reliability, and customer satisfaction.",
+ " At AHS, we understand the complexities of the supply chain and strive to simplify the process for our partners. Our extensive network of suppliers and manufacturers allows us to source top-notch products at competitive prices, ensuring that you receive the best value for your investment."
+ ]
+ },
+ "Sides": {
+ "title": "Discover Our Expertise",
+ "fmcg": {
+ "title": "FMCG",
+ "subtitle": "Fast-Moving Consumer Goods",
+ "description": "Our FMCG division specializes in the distribution and marketing of everyday consumer products. We ensure rapid turnover, efficient supply chains, and innovative marketing strategies to meet the ever-changing demands of consumers."
+ },
+ "construction": {
+ "title": "Construction",
+ "subtitle": "Building the Future",
+ "description": "Our Construction arm is dedicated to creating lasting infrastructure and innovative building solutions.From residential projects to commercial complexes, we bring expertise, quality, and sustainability to every construction endeavor."
+ }
+ }
+ },
+ "Footer": {
+ "address": " Unit No. 53, Building No 203, Complex No.308 , Mawaleh North ,Road No. 108 Al Mouj Street , Muscat Uman.F.o.0ox.our.F.C.ll Muscat Airport"
+ }
+}
diff --git a/src/middleware.js b/src/middleware.js
new file mode 100644
index 0000000..5642aaf
--- /dev/null
+++ b/src/middleware.js
@@ -0,0 +1,8 @@
+import createMiddleware from 'next-intl/middleware';
+import { routing } from "./i18n/routing";
+export default createMiddleware(routing);
+
+export const config = {
+ // Match only internationalized pathnames
+ matcher: ['/', '/(ar-OM|en)/:path*',"/((?!_next/static|_next/image|api|images|icons|fonts|video|audio|favicon.ico).*)",],
+};
\ No newline at end of file
diff --git a/src/view/Landing/components/AboutUs.jsx b/src/view/Landing/components/AboutUs.jsx
index 14d9ff4..fa2d0d5 100644
--- a/src/view/Landing/components/AboutUs.jsx
+++ b/src/view/Landing/components/AboutUs.jsx
@@ -1,10 +1,13 @@
+import { useLocale, useTranslations } from "next-intl";
import Image from "next/image";
import React from "react";
const AboutUs = () => {
+ const t = useTranslations("HomePage.AboutUs")
+ const locale = useLocale()
return (
-
+
-
+
-
+
-
- ADVANCED HORIZON SERVICES LLC Products{" "}
+
+ {t("brandName")}
+
-
-
-
-
+
- Your Trusted Partner in Wholesale Supply Chain Solutions
+ {t("description.0")}
- Advanced Horizon Services is a leading trade company specializing in wholesale supply chain solutions for a diverse range of products, including high-quality detergents and food items. With years of experience and extensive relations in the industry, we pride ourselves on our commitment to excellence, reliability, and customer satisfaction.
+ {t("description.1")}
-
- At AHS, we understand the complexities of the supply chain and strive to simplify the process for our partners. Our extensive network of suppliers and manufacturers allows us to source top-notch products at competitive prices, ensuring that you receive the best value for your investment.
-
+ {t("description.2")}
diff --git a/src/view/Landing/components/Footer.jsx b/src/view/Landing/components/Footer.jsx
index 36e024a..cd58a04 100644
--- a/src/view/Landing/components/Footer.jsx
+++ b/src/view/Landing/components/Footer.jsx
@@ -5,8 +5,10 @@ import logo from "../../../assets/images/logo.png";
import { MapPinHouse } from "lucide-react";
import { Mail } from "lucide-react";
import { PhoneCall } from "lucide-react";
+import { useTranslations } from "next-intl";
const Footer = () => {
+ const t = useTranslations("Footer")
return (
@@ -31,8 +33,7 @@ const Footer = () => {
- Unit No. 53, Building No 203, Complex No.308 , Mawaleh North ,Road No. 108 Al Mouj Street , Muscat
- Uman.F.o.0ox.our.F.C.ll Muscat Airport
+ {t("address")}
diff --git a/src/view/Landing/components/Sides.jsx b/src/view/Landing/components/Sides.jsx
index 512ecf0..3760d11 100644
--- a/src/view/Landing/components/Sides.jsx
+++ b/src/view/Landing/components/Sides.jsx
@@ -1,26 +1,27 @@
import React from 'react';
import { ShoppingCart, Building2 } from 'lucide-react'; // Assuming you're using lucide-react for icons
+import { useTranslations } from 'next-intl';
const Sides = () => {
+
+ const t = useTranslations("HomePage.Sides")
return (
- Discover Our Expertise
+ {t("title")}
{/* First Card */}
-
FMCG
-
Fast-Moving Consumer Goods
+
{t("fmcg.title")}
+
{t("fmcg.subtitle")}
- Our FMCG division specializes in the distribution and marketing of everyday consumer products. We ensure
- rapid turnover, efficient supply chains, and innovative marketing strategies to meet the ever-changing
- demands of consumers.
+ {t("fmcg.description")}
@@ -29,14 +30,12 @@ const Sides = () => {
-
Construction
-
Building the Future
+
{t("construction.title")}
+
{t("construction.subtitle")}
- Our Construction arm is dedicated to creating lasting infrastructure and innovative building solutions.
- From residential projects to commercial complexes, we bring expertise, quality, and sustainability to
- every construction endeavor.
+ {t("construction.description")}