diff --git a/messages/en.json b/messages/en.json index 08c7e22..0617e6c 100644 --- a/messages/en.json +++ b/messages/en.json @@ -512,10 +512,22 @@ "title": "Your plan also includes:", "list": { "items": { - "1": "Astrological compatibility analysis", - "2": "Personal advice on attracting love", - "3": "Meditations and affirmations for love", - "4": "Bonus checklist: “The Perfect Date”" + "1": { + "title": "Чат с экспертом", + "text": "Задай свой вопрос и получи первый совет уже сегодня." + }, + "2": { + "title": "Анализ совместимости", + "text": "Пойми, почему вы притягиваетесь друг к другу - и какие различия могут мешать гармонии." + }, + "3": { + "title": "Как говорить о чувствах и быть понятым", + "text": "Пошаговый гайд, который поможет восстановить близость и искреннее общение." + }, + "4": { + "title": "Медитации и аффирмации для сердца", + "text": "Практики, которые открывают внутреннюю уверенность и притягивают любовь." + } } } }, @@ -525,23 +537,23 @@ "1": { "username": "@anna.smith28", "flag": "🇺🇸", - "text": "The description was spot on! I met exactly the kind of man that was described. We've been together for 8 months now! 💕", + "text": "The drawing was made before we met, and it matched down to the smallest detail: the same gaze, the same mole. We simply couldn't believe it! Now the portrait hangs in our home as a sign of destiny.", "answer": { "title": "Response from the support team", - "text": "Anna, thank you so much for your review! We are very happy that our portrait helped you find true love. We wish you happiness!" + "text": "Anna, it's just the magic of fate! We are very happy that your portrait has become part of your love story. May it remind you how important it is to believe in the signs of the universe 🌹" } }, "2": { - "username": "@dmitry_32", - "flag": "🇨🇦", - "text": "An incredibly accurate portrait! I met a girl who was exactly as described in the portrait. Thank you for your professional approach! 🙏", + "username": "@mike.andrews_89", + "flag": "🇺🇸", + "text": "I decided to check whether my wife was truly my other half. The portrait matched her down to the last detail—the same gaze, the same energy. We both felt as if fate had just confirmed our union.", "answer": { "title": "Response from the support team", - "text": "Dmitry, thank you for your trust! We are very happy that the portrait met your expectations. We wish you a strong relationship!" + "text": "That's amazing! Stories like this prove that true love really does have an impact on an energetic level. May your portrait preserve the warmth of your connection for many years to come!" } }, "3": { - "username": "@elena_art", + "username": "@emily.harris_ang...", "flag": "🇬🇧", "text": "The “Finding the One” guide changed my life! The portrait was 100% accurate, and I met my love in a museum, just as predicted! ✨", "answer": { diff --git a/public/email-marketing/comp/v2/emily_harris_ang.png b/public/email-marketing/comp/v2/emily_harris_ang.png new file mode 100644 index 0000000..2df9b6e Binary files /dev/null and b/public/email-marketing/comp/v2/emily_harris_ang.png differ diff --git a/public/email-marketing/comp/v2/gpt-portrait-2.jpg b/public/email-marketing/comp/v2/gpt-portrait-2.jpg new file mode 100644 index 0000000..91f565f Binary files /dev/null and b/public/email-marketing/comp/v2/gpt-portrait-2.jpg differ diff --git a/public/email-marketing/comp/v2/mike_andrews_89.png b/public/email-marketing/comp/v2/mike_andrews_89.png new file mode 100644 index 0000000..95272a0 Binary files /dev/null and b/public/email-marketing/comp/v2/mike_andrews_89.png differ diff --git a/src/app/[locale]/(email-marketing)/em/(compatibility)/c/v2/landing/page.tsx b/src/app/[locale]/(email-marketing)/em/(compatibility)/c/v2/landing/page.tsx index 1282f22..dc05cca 100644 --- a/src/app/[locale]/(email-marketing)/em/(compatibility)/c/v2/landing/page.tsx +++ b/src/app/[locale]/(email-marketing)/em/(compatibility)/c/v2/landing/page.tsx @@ -1,4 +1,3 @@ - import { GuaranteedSecurityPayments, Header, diff --git a/src/components/domains/email-marketing/compatibility/v2/DetailedPortraitCard/DetailedPortraitCard.tsx b/src/components/domains/email-marketing/compatibility/v2/DetailedPortraitCard/DetailedPortraitCard.tsx index 9a58f0d..4c36f8b 100644 --- a/src/components/domains/email-marketing/compatibility/v2/DetailedPortraitCard/DetailedPortraitCard.tsx +++ b/src/components/domains/email-marketing/compatibility/v2/DetailedPortraitCard/DetailedPortraitCard.tsx @@ -1,18 +1,23 @@ +"use client"; + import Image from "next/image"; -import { getTranslations } from "next-intl/server"; +import { useTranslations } from "next-intl"; import { Typography } from "@/components/ui"; +import { useUser } from "@/providers/user-provider"; import { emailMarketingCompV2Images } from "@/shared/constants/images"; import { translatePathEmailMarketingCompatibilityV2 } from "@/shared/constants/translate"; import styles from "./DetailedPortraitCard.module.scss"; -export default async function DetailedPortraitCard() { - const t = await getTranslations( +export default function DetailedPortraitCard() { + const t = useTranslations( translatePathEmailMarketingCompatibilityV2( "Landing.what-get.detailed-portrait" ) ); + const { user } = useUser(); + const gender = user?.profile?.gender; return (