pickOffer(uid)}>
-
-
-
-
- {commaSeparated(Math.round(Number(tokens_per_plan)))}
-
-
-
токенов
-
-
-
- {points.map((el, idx) => (
- -
- {el}
-
- ))}
-
-
-
{commaSeparated(parseInt(price) ?? 0)}₽
-
-
pay(uid)} variant={'outline'}>
- Оплатить
-
-
- )
-}
-
-export default Offer
@@ -1,51 +0,0 @@
-.wrap {
- display: flex;
- justify-content: space-between;
- align-items: flex-start;
- width: 100%;
-
- @media (max-width: 768px) {
- flex-direction: column;
- }
- .main {
- width: 69%;
-
- @media (max-width: 768px) {
- width: 100%;
- }
-
- div {
- height: 176px;
- display: flex;
- flex-direction: column;
- align-items: flex-start;
- justify-content: space-between;
-
- .manage {
- margin-top: 35px;
- display: flex;
- flex-direction: row;
- width: 100%;
- align-items: center;
- justify-content: space-between;
- @media (max-width: 768px) {
- margin-top: 15px;
- flex-direction: column-reverse;
- }
- > button {
- width: 49.5%;
- @media (max-width: 768px) {
- width: 100%;
- }
- }
- }
- }
- }
-}
-.messages {
- @media (max-width: 768px) {
- margin-top: 15px;
- margin-left: 0;
- width: 100%;
- }
-}
@@ -1 +0,0 @@
-export { Payment } from './model/payment'
@@ -13,17 +13,17 @@ import Link from 'next/link'
import { useRouter } from 'next/router'
import { useSession } from 'next-auth/react'
-import '../styles/styles.module.css'
-import styles from '../styles/styles.module.css'
-
import { useUserSettingsContext } from '#/entities/user-account'
import { BUSINESS_ERROR_REPORT, ERROR_REPORT, getModalById } from '#/features/modals'
+import '../styles/styles.module.css'
+import styles from '../styles/styles.module.css'
+
export const menuListTop = [
{ title: 'Дашборд', link: '/', icon: '/svg/side-menu/market', activeList: [] },
{
- title: 'Оплата',
- link: '/account?scope=subscribe',
+ title: 'Подписка',
+ link: '/subscription',
icon: '/svg/side-menu/star',
activeList: ['subscribe'],
},