-
+
+ {/* Copied message positioned above coupon in available space */}
+ {copiedCode && (
+
+
+ {screen.copiedMessage
+ ? screen.copiedMessage.replace("{code}", copiedCode || "")
+ : `Промокод "${copiedCode}" скопирован!`
+ }
+
+
+ )}
+
-
- {copiedCode && (
-
-
- {screen.copiedMessage
- ? screen.copiedMessage.replace("{code}", copiedCode || "")
- : `Промокод "${copiedCode}" скопирован!`
- }
-
-
- )}
);
diff --git a/src/components/funnel/templates/TrialPaymentTemplate/TrialPaymentTemplate.stories.tsx b/src/components/funnel/templates/TrialPaymentTemplate/TrialPaymentTemplate.stories.tsx
index 70bb325..1146c38 100644
--- a/src/components/funnel/templates/TrialPaymentTemplate/TrialPaymentTemplate.stories.tsx
+++ b/src/components/funnel/templates/TrialPaymentTemplate/TrialPaymentTemplate.stories.tsx
@@ -206,15 +206,15 @@ const defaultScreen: TrialPaymentScreenDefinition = {
title: { text: "WIT LAB ©" },
contacts: {
title: { text: "CONTACTS" },
- email: { href: "support@witlab.com", text: "support@witlab.com" },
+ email: { href: "https://witlab.us", text: "Contact" },
address: { text: "Wit Lab 2108 N ST STE N SACRAMENTO, CA95816, US" },
},
legal: {
title: { text: "LEGAL" },
links: [
- { href: "https://witlab.us", text: "Terms of Service" },
- { href: "https://witlab.us", text: "Privacy Policy" },
- { href: "https://witlab.us", text: "Refund Policy" },
+ { href: "https://witlab.us/terms", text: "Terms of Service" },
+ { href: "https://witlab.us/privacy", text: "Privacy Policy" },
+ { href: "https://witlab.us/refund", text: "Refund Policy" },
],
copyright: {
text:
diff --git a/src/components/funnel/templates/TrialPaymentTemplate/TrialPaymentTemplate.tsx b/src/components/funnel/templates/TrialPaymentTemplate/TrialPaymentTemplate.tsx
index f01bdbf..b074cb6 100644
--- a/src/components/funnel/templates/TrialPaymentTemplate/TrialPaymentTemplate.tsx
+++ b/src/components/funnel/templates/TrialPaymentTemplate/TrialPaymentTemplate.tsx
@@ -128,7 +128,7 @@ export function TrialPaymentTemplate({
if (paymentSectionRef.current) {
paymentSectionRef.current.scrollIntoView({
behavior: "smooth",
- block: "start",
+ block: "end", // Policy text at bottom of screen
});
}
};
@@ -285,7 +285,7 @@ export function TrialPaymentTemplate({
initialSeconds: screen.headerBlock.timerSeconds ?? 600,
}}
button={{
- children: defaultTexts?.continueButton || "Continue",
+ children: "Get Sketch",
onClick: scrollToPayment,
}}
/>
@@ -575,7 +575,7 @@ export function TrialPaymentTemplate({
)}
{screen.paymentButtons && (
-
+
{
@@ -684,18 +684,29 @@ export function TrialPaymentTemplate({
)}
{screen.policy && (
-
+
+
+ By clicking Continue, you agree to our{" "}
+
+ Terms of Use & Service
+ {" "}
+ and{" "}
+
+ Privacy Policy
+
+ . You also acknowledge that your 1-week introductory plan to Wit Lab LLC, billed at $1.00, will automatically renew at $14.99 every 1 week unless canceled before the end of the trial period.
+
+
)}
{screen.usersPortraits && (
@@ -947,7 +958,13 @@ export function TrialPaymentTemplate({
screen.stillHaveQuestions.contactButtonText
? {
children: screen.stillHaveQuestions.contactButtonText,
- onClick: scrollToPayment,
+ onClick: () => {
+ // Open contact link from footer config
+ const contactUrl = screen.footer?.contacts?.email?.href;
+ if (contactUrl) {
+ window.open(contactUrl, "_blank", "noopener,noreferrer");
+ }
+ },
}
: undefined
}
diff --git a/src/components/funnel/templates/layouts/TemplateLayout.tsx b/src/components/funnel/templates/layouts/TemplateLayout.tsx
index bc6ef46..db8205f 100644
--- a/src/components/funnel/templates/layouts/TemplateLayout.tsx
+++ b/src/components/funnel/templates/layouts/TemplateLayout.tsx
@@ -135,11 +135,11 @@ export function TemplateLayout({
diff --git a/src/components/templates/Email/Email.stories.tsx b/src/components/templates/Email/Email.stories.tsx
index 4882130..366fd9c 100644
--- a/src/components/templates/Email/Email.stories.tsx
+++ b/src/components/templates/Email/Email.stories.tsx
@@ -53,11 +53,11 @@ const meta: Meta = {
privacyTermsConsentProps: {
privacyPolicy: {
children: "Privacy Policy",
- href: "https://witlab.us",
+ href: "https://witlab.us/privacy",
},
termsOfUse: {
children: "Terms of use",
- href: "https://witlab.us",
+ href: "https://witlab.us/terms",
},
},
privacySecurityBannerProps: {
diff --git a/src/components/templates/SoulmatePortrait/SoulmatePortrait.stories.tsx b/src/components/templates/SoulmatePortrait/SoulmatePortrait.stories.tsx
index 921bc78..3eeab42 100644
--- a/src/components/templates/SoulmatePortrait/SoulmatePortrait.stories.tsx
+++ b/src/components/templates/SoulmatePortrait/SoulmatePortrait.stories.tsx
@@ -21,11 +21,11 @@ const meta: Meta = {
privacyTermsConsentProps: {
privacyPolicy: {
children: "Privacy Policy",
- href: "https://witlab.us",
+ href: "https://witlab.us/privacy",
},
termsOfUse: {
children: "Terms of use",
- href: "https://witlab.us",
+ href: "https://witlab.us/terms",
},
},
title: {
diff --git a/src/components/templates/TrialPayment/TrialPayment.stories.tsx b/src/components/templates/TrialPayment/TrialPayment.stories.tsx
index e5cbb61..d6be006 100644
--- a/src/components/templates/TrialPayment/TrialPayment.stories.tsx
+++ b/src/components/templates/TrialPayment/TrialPayment.stories.tsx
@@ -718,8 +718,8 @@ const meta: Meta = {
children: "CONTACTS",
},
email: {
- href: "support@witlab.com",
- children: "support@witlab.com",
+ href: "https://witlab.us",
+ children: "Contact",
},
address: {
children: "Wit Lab 2108 N ST STE N SACRAMENTO, CA95816, US",
@@ -730,9 +730,9 @@ const meta: Meta = {
children: "LEGAL",
},
links: [
- { href: "https://witlab.us", children: "Terms of Service" },
- { href: "https://witlab.us", children: "Privacy Policy" },
- { href: "https://witlab.us", children: "Refund Policy" },
+ { href: "https://witlab.us/terms", children: "Terms of Service" },
+ { href: "https://witlab.us/privacy", children: "Privacy Policy" },
+ { href: "https://witlab.us/refund", children: "Refund Policy" },
],
copyright: {
children:
diff --git a/src/components/widgets/PrivacyTermsConsent/PrivacyTermsConsent.tsx b/src/components/widgets/PrivacyTermsConsent/PrivacyTermsConsent.tsx
index b8ccc7e..7e4b9cb 100644
--- a/src/components/widgets/PrivacyTermsConsent/PrivacyTermsConsent.tsx
+++ b/src/components/widgets/PrivacyTermsConsent/PrivacyTermsConsent.tsx
@@ -27,13 +27,13 @@ export default function PrivacyTermsConsent({
I agree to the{" "}
{privacyPolicy && (
- {privacyPolicy.children}
+ {privacyPolicy.children}
)}
{", "}
{termsOfUse && (
- {termsOfUse.children}
+ {termsOfUse.children}
)}{" "}
and to the use of cookies and tracking technologies, that require your
diff --git a/src/lib/admin/builder/state/defaults/trialPayment.ts b/src/lib/admin/builder/state/defaults/trialPayment.ts
index 3231c0d..263ae05 100644
--- a/src/lib/admin/builder/state/defaults/trialPayment.ts
+++ b/src/lib/admin/builder/state/defaults/trialPayment.ts
@@ -175,15 +175,15 @@ export function buildTrialPaymentDefaults(id?: string): TrialPaymentScreenDefini
title: { text: "WIT LAB ©" },
contacts: {
title: { text: "CONTACTS" },
- email: { href: "support@witlab.com", text: "support@witlab.com" },
+ email: { href: "https://witlab.us", text: "Contact" },
address: { text: "Wit Lab 2108 N ST STE N SACRAMENTO, CA95816, US" },
},
legal: {
title: { text: "LEGAL" },
links: [
- { href: "https://witlab.com/terms", text: "Terms of Service" },
- { href: "https://witlab.com/privacy", text: "Privacy Policy" },
- { href: "https://witlab.com/refund", text: "Refund Policy" },
+ { href: "https://witlab.us/terms", text: "Terms of Service" },
+ { href: "https://witlab.us/privacy", text: "Privacy Policy" },
+ { href: "https://witlab.us/refund", text: "Refund Policy" },
],
copyright: {
text:
diff --git a/src/lib/funnel/bakedFunnels.ts b/src/lib/funnel/bakedFunnels.ts
index dae9d72..2b7ed25 100644
--- a/src/lib/funnel/bakedFunnels.ts
+++ b/src/lib/funnel/bakedFunnels.ts
@@ -178,7 +178,7 @@ export const BAKED_FUNNELS: Record = {
},
"navigation": {
"rules": [],
- "defaultNextScreenId": "relationship-status",
+ "defaultNextScreenId": "analysis-target",
"isEndScreen": false
},
"list": {
@@ -277,6 +277,15 @@ export const BAKED_FUNNELS: Record = {
"align": "left",
"color": "default"
},
+ "subtitle": {
+ "text": "This helps make the portrait and insights more accurate.",
+ "show": true,
+ "font": "manrope",
+ "weight": "regular",
+ "size": "md",
+ "align": "center",
+ "color": "default"
+ },
"bottomActionButton": {
"show": false,
"cornerRadius": "3xl",
@@ -2203,7 +2212,7 @@ export const BAKED_FUNNELS: Record = {
{
"conditions": [
{
- "screenId": "gender",
+ "screenId": "partner-gender",
"operator": "includesAny",
"optionIds": [
"male"
@@ -2347,7 +2356,7 @@ export const BAKED_FUNNELS: Record = {
},
"icon": "lock"
},
- "buttonText": "Get Me Soulmate Sketch"
+ "buttonText": "Get My Soulmate Sketch"
},
"joinedToday": {
"count": {
@@ -2359,7 +2368,7 @@ export const BAKED_FUNNELS: Record = {
},
"trustedByOver": {
"text": {
- "text": "Trusted by over 355,000 people."
+ "text": "Trusted by over **355,000 people."
}
},
"findingOneGuide": {
@@ -2372,7 +2381,7 @@ export const BAKED_FUNNELS: Record = {
}
},
"text": {
- "text": "You're not just looking for someone — you're. You're not just looking for someone — you'reYou're not just looking for someone — you'reYou're not just looking for someone — you'reYou're not just looking for someone — you're. You're not just looking for someone — you're. You're not just looking for someone — you'reYou're not just looking for someone — you'reYou're not just looking for someone — you'reYou're not just looking for someone — you're"
+ "text": "You’re special — you have imagination and energy that not everyone can understand. You deserve more than to be “half-understood” — you deserve to meet someone who sees the world as deeply and vividly as you do. This guide will help you recognize the signs of destiny, trust your path, and find the one whose heart is already connected to yours."
},
"blur": {
"text": {
@@ -2481,7 +2490,7 @@ export const BAKED_FUNNELS: Record = {
"src": "/trial-payment/users-portraits/6.jpg"
}
],
- "buttonText": "Get me soulmate sketch"
+ "buttonText": "Get My Soulmate Sketch"
},
"joinedTodayWithAvatars": {
"count": {
@@ -2650,7 +2659,7 @@ export const BAKED_FUNNELS: Record = {
"title": {
"text": "Still have questions? We're here to help!"
},
- "actionButtonText": "Get me Soulmate Sketch",
+ "actionButtonText": "Get My Soulmate Sketch",
"contactButtonText": "Contact Support"
},
"commonQuestions": {
@@ -2685,8 +2694,8 @@ export const BAKED_FUNNELS: Record = {
"text": "CONTACTS"
},
"email": {
- "href": "support@witlab.com",
- "text": "support@witlab.com"
+ "href": "info@witlab.us",
+ "text": "info@witlab.us"
},
"address": {
"text": "Wit Lab 2108 N ST STE N SACRAMENTO, CA95816, US"
@@ -2698,15 +2707,15 @@ export const BAKED_FUNNELS: Record = {
},
"links": [
{
- "href": "https://witlab.us",
+ "href": "https://witlab.com/terms",
"text": "Terms of Service"
},
{
- "href": "https://witlab.us",
+ "href": "https://witlab.com/privacy",
"text": "Privacy Policy"
},
{
- "href": "https://witlab.us",
+ "href": "https://witlab.com/refund",
"text": "Refund Policy"
}
],