diff --git a/messages/de.json b/messages/de.json
index 755bf5d..5a47e52 100644
--- a/messages/de.json
+++ b/messages/de.json
@@ -238,9 +238,9 @@
"exclusive_offer": "Exclusive offer recommended for you to achieve your goals faster",
"your_unique_consultation": "Your unique individual consultation",
"30-minute": "30-minute private consultation with an expert",
- "unlock_profound": "Unlock profound insights into your personality, relationships, career trajectory, and life's pivotal moments through astrology, empowering you to make informed decisions and achieve greater fulfillment.",
+ "unlock_profound": "Unlock profound insights into your personality, relationships, career trajectory, and life’s pivotal moments — empowering you to make informed decisions and achieve greater fulfillment.",
"one_time_price_offer": "One time price offer: ",
- "choose_from": "Choose from 80+ experts astrologers.",
+ "choose_from": "Choose from 6+ professional experts.",
"original_price": "Original price: {oldPrice} ",
"save": "Save {discount}%",
"get_my_consultation": "Get my consultation",
diff --git a/messages/en.json b/messages/en.json
index 4ad28d3..c20fa69 100644
--- a/messages/en.json
+++ b/messages/en.json
@@ -245,9 +245,9 @@
"exclusive_offer": "Exclusive offer recommended for you to achieve your goals faster",
"your_unique_consultation": "Your unique individual consultation",
"30-minute": "30-minute private consultation with an expert",
- "unlock_profound": "Unlock profound insights into your personality, relationships, career trajectory, and life's pivotal moments through astrology, empowering you to make informed decisions and achieve greater fulfillment.",
+ "unlock_profound": "Unlock profound insights into your personality, relationships, career trajectory, and life’s pivotal moments — empowering you to make informed decisions and achieve greater fulfillment.",
"one_time_price_offer": "One time price offer: ",
- "choose_from": "Choose from 80+ experts astrologers.",
+ "choose_from": "Choose from 6+ professional experts.",
"original_price": "Original price: {oldPrice} ",
"save": "Save {discount}%",
"get_my_consultation": "Get my consultation",
diff --git a/messages/es.json b/messages/es.json
index f57b0cc..addaaea 100644
--- a/messages/es.json
+++ b/messages/es.json
@@ -238,9 +238,9 @@
"exclusive_offer": "Exclusive offer recommended for you to achieve your goals faster",
"your_unique_consultation": "Your unique individual consultation",
"30-minute": "30-minute private consultation with an expert",
- "unlock_profound": "Unlock profound insights into your personality, relationships, career trajectory, and life's pivotal moments through astrology, empowering you to make informed decisions and achieve greater fulfillment.",
+ "unlock_profound": "Unlock profound insights into your personality, relationships, career trajectory, and life’s pivotal moments — empowering you to make informed decisions and achieve greater fulfillment.",
"one_time_price_offer": "One time price offer: ",
- "choose_from": "Choose from 80+ experts astrologers.",
+ "choose_from": "Choose from 6+ professional experts.",
"original_price": "Original price: {oldPrice} ",
"save": "Save {discount}%",
"get_my_consultation": "Get my consultation",
diff --git a/public/paywall__astrologers-image_new.png b/public/paywall__astrologers-image_new.png
new file mode 100644
index 0000000..af6d0b9
Binary files /dev/null and b/public/paywall__astrologers-image_new.png differ
diff --git a/public/paywall__spiritist-spiritualist_new.png b/public/paywall__spiritist-spiritualist_new.png
new file mode 100644
index 0000000..860e8bf
Binary files /dev/null and b/public/paywall__spiritist-spiritualist_new.png differ
diff --git a/src/components/domains/additional-purchases/ConsultationTable/ConsultationTable.tsx b/src/components/domains/additional-purchases/ConsultationTable/ConsultationTable.tsx
index 2ccc139..283333b 100644
--- a/src/components/domains/additional-purchases/ConsultationTable/ConsultationTable.tsx
+++ b/src/components/domains/additional-purchases/ConsultationTable/ConsultationTable.tsx
@@ -24,8 +24,8 @@ export default function ConsultationTable() {
const price = getFormattedPrice(product?.price ?? 0, currency);
const oldPrice = getFormattedPrice(
- (Number(product?.price) / (Number(discount) || 100)) * 100,
- currency
+ Number(product?.price ?? 0) * 100 / (100 - Number(discount)),
+ currency,
);
return (
@@ -48,7 +48,7 @@ export default function ConsultationTable() {