diff --git a/src/assets/images/new_order.png b/src/assets/images/new_order.png new file mode 100644 index 0000000..f980c3f Binary files /dev/null and b/src/assets/images/new_order.png differ diff --git a/src/assets/images/support1.png b/src/assets/images/support1.png new file mode 100644 index 0000000..9efad73 Binary files /dev/null and b/src/assets/images/support1.png differ diff --git a/src/locale/fa.ts b/src/locale/fa.ts index 6b3b6bd..37a45e5 100644 --- a/src/locale/fa.ts +++ b/src/locale/fa.ts @@ -27,5 +27,16 @@ export const fa = { orderCount: "سفارش های در حال انجام", orderDoneCount: "سفارشات انجام شده", services: "خدمات", + submitNewOrder: "سفارش خودرا ثبت کنید", + submitNewOrderButton: "سفارش جدید", + specialSolution: "راه‌حل اختصاصی برای شما در نگاره!", + specialSolutionDescription: "چاپ سریع، دقیق و خلاقانه برای کسب‌وکار شما!", + specialSolutionFeature1: "متناسب با حوزه‌ی فعالیت شما و نیازهای برندتان", + specialSolutionFeature2: + "با بیش از ۲۸ سال تجربه‌ی حرفه‌ای در چاپ و تبلیغات", + specialSolutionFeature3: "رعایت بهترین استانداردهای کیفیت و طراحی", + freeConsultation: "دریافت مشاوره رایگان", + contactUs: "با ما تماس بگیرید", + phoneNumber: "۰۸۶۹۱۰۰۹۰۰۱", }, }; diff --git a/src/pages/home/Home.tsx b/src/pages/home/Home.tsx index 193d64b..b0fca1a 100644 --- a/src/pages/home/Home.tsx +++ b/src/pages/home/Home.tsx @@ -2,6 +2,12 @@ import { type FC } from 'react' import Stats from './components/Stats' import Services from './components/Services' import Orders from './components/Orders' +import NewOrderImage from '@/assets/images/new_order.png' +import { t } from '@/locale' +import Button from '@/components/Button' +import { AddSquare, MessageQuestion } from 'iconsax-react' +import { COLORS } from '@/constants/colors' +import SupportImage from '@/assets/images/support1.png' const Home: FC = () => { return ( @@ -11,6 +17,62 @@ const Home: FC = () => { +
+
+ +

+ {t('home.submitNewOrder')} +

+ +
+ +
+

+ {t('home.specialSolution')} +

+

+ {t('home.specialSolutionDescription')} +

+ +
+
+
+
{t('home.specialSolutionFeature1')}
+
+
+
+
{t('home.specialSolutionFeature2')}
+
+
+
+
{t('home.specialSolutionFeature3')}
+
+
+ +
+
) }