{pricing.displayName}
{pricing.description}
+
+
+ {
+ this.renderSelectPeriod()
+ }
+
+
{
diff --git a/web/src/pricing/SingleCard.js b/web/src/pricing/SingleCard.js
index 77a9fe88..29add793 100644
--- a/web/src/pricing/SingleCard.js
+++ b/web/src/pricing/SingleCard.js
@@ -14,7 +14,7 @@
import i18next from "i18next";
import React from "react";
-import {Button, Card, Col} from "antd";
+import {Button, Card, Col, Row} from "antd";
import * as Setting from "../Setting";
import {withRouter} from "react-router-dom";
@@ -37,36 +37,41 @@ class SingleCard extends React.Component {
style={isSingle ? {width: "320px", height: "100%"} : {width: "100%", height: "100%", paddingTop: "0px"}}
title={{plan.displayName} }
>
-
- {Setting.getCurrencySymbol(plan.currency)} {plan.pricePerMonth}
- {i18next.t("plan:per month")}
-
+
+
+
+ {Setting.getCurrencySymbol(plan.currency)} {plan.price}
+ {plan.period === "Yearly" ? i18next.t("plan:per year") : i18next.t("plan:per month")}
+
+
-
-
-
-
-
-
- {(plan.options ?? []).map((option) => {
- // eslint-disable-next-line react/jsx-key
- return
-
-
-
- {option}
- ;
- })}
-
-
- window.location.href = link}>
- {
- i18next.t("pricing:Getting started")
- }
-
+ {/*
+ {(plan.options ?? []).map((option) => {
+ // eslint-disable-next-line react/jsx-key
+ return
+
+
+
+ {option}
+ ;
+ })}
+ */}
+
+
+ window.location.href = link}>
+ {
+ i18next.t("pricing:Getting started")
+ }
+
+
+
);