|
|
@@ -8,6 +8,7 @@ import PlanCard from '../PlanCard';
|
|
|
import OrderSummary from '../OrderSummary';
|
|
|
import { useAction } from './useAction';
|
|
|
import { useService } from './useService';
|
|
|
+import UserInfo from '../UserInfo';
|
|
|
|
|
|
const PricingContent = memo(() => {
|
|
|
const { t } = useTranslation();
|
|
|
@@ -19,29 +20,19 @@ const PricingContent = memo(() => {
|
|
|
|
|
|
return (
|
|
|
<div className="max-w-[1440px] w-full px-[30px]">
|
|
|
- <div className="bg-[#0F1116] px-5 sm:px-6 lg:px-[100px] py-[30px] pb-[100px] my-[50px] rounded-[12px] flex flex-col gap-10">
|
|
|
- <div className="flex flex-col gap-5">
|
|
|
- <h1 className="text-white text-[35px] font-semibold leading-[1.43] text-center uppercase">
|
|
|
- {t('pages.pricing.title')}
|
|
|
- </h1>
|
|
|
- </div>
|
|
|
+ <div className={`bg-[#0F1116] px-5 sm:px-6 lg:px-[100px] py-[30px] pb-[100px] my-[50px] rounded-[12px] flex flex-col gap-10 ${isMobile ? 'gap-5' : 'gap-10'}`}>
|
|
|
+ <span
|
|
|
+ className={`text-white font-semibold leading-[1.43] text-center uppercase ${isMobile ? 'text-[22px]' : 'text-[35px]'}`}
|
|
|
+ >
|
|
|
+ {t('pages.pricing.title')}
|
|
|
+ </span>
|
|
|
+ <UserInfo />
|
|
|
+ <span
|
|
|
+ className={`text-white font-semibold leading-[1.43] uppercase ${isMobile ? 'text-[16px]' : 'text-[22px]'}`}
|
|
|
+ >
|
|
|
+ {t('pages.pricing.subTitle')}
|
|
|
+ </span>
|
|
|
<div className="flex flex-col gap-10">
|
|
|
- <div className="flex flex-col gap-2.5">
|
|
|
- <div className="flex gap-2.5">
|
|
|
- <span className="text-[#0EA5E9] text-[22px] font-semibold leading-[1.4]">
|
|
|
- {t('pages.pricing.step3')}
|
|
|
- </span>
|
|
|
- <span className="text-white text-[22px] font-semibold leading-[1.4] uppercase">
|
|
|
- {t('pages.pricing.step3Title')}
|
|
|
- </span>
|
|
|
- </div>
|
|
|
- <p className="text-[#646776] text-sm font-medium leading-[1.4]">
|
|
|
- {t('pages.pricing.description')}
|
|
|
- </p>
|
|
|
- <p className="text-[#646776] text-sm font-medium leading-[1.4]">
|
|
|
- {t('pages.pricing.currencyNote')}
|
|
|
- </p>
|
|
|
- </div>
|
|
|
<div
|
|
|
className={`flex ${
|
|
|
isMobile
|