diff --git a/example.env.local b/example.env.local index 2159f5a..6442441 100644 --- a/example.env.local +++ b/example.env.local @@ -7,5 +7,6 @@ NEXT_PUBLIC_PRIMARY_MAIN = "#084070" NEXT_PUBLIC_SECONDARY_MAIN = "#FF4E00" NEXT_PUBLIC_BASE_URL = "https://loan.witel.ir" +NEXT_PUBLIC_POWERED_BY_URL = "https://witel.ir" NODE_ENV = "development" \ No newline at end of file diff --git a/public/icons/logoLandingPage.png b/public/icons/logoLandingPage.png new file mode 100644 index 0000000..d21798a Binary files /dev/null and b/public/icons/logoLandingPage.png differ diff --git a/public/locales/fa/app.json b/public/locales/fa/app.json index a457909..50e3060 100644 --- a/public/locales/fa/app.json +++ b/public/locales/fa/app.json @@ -3,6 +3,7 @@ "app_short_name": "سامانه تسهیلات", "dashboard": "داشبورد", "first_page": "خوش آمدید", + "powered_by_witel": "توسعه یافته توسط وایتل", "login": "ورود", "pending": "درحال اجرا...", "login_user_panel": "ورود به پنل کاربران", diff --git a/src/components/first/FooterDetails.jsx b/src/components/first/FooterDetails.jsx index df9b43f..aafb4e7 100644 --- a/src/components/first/FooterDetails.jsx +++ b/src/components/first/FooterDetails.jsx @@ -1,20 +1,39 @@ import {Box, Button, Container, Grid, Stack, Typography} from "@mui/material"; +import LinkRouting from "@/core/components/LinkRouting"; +import {useTranslations} from "next-intl"; const FooterDetails = () => { - + const t = useTranslations(); return( - - - آخرین به روزرسانی - 1402/08/22 + + + {t("powered_by_witel")} + + + + + v{process.env.NEXT_PUBLIC_API_VERSION} +