Inspire Your Audience, Create Lasting Impact
Book Tabari Wallace today and experience the difference motivation and expert insights can make.
`;
container.appendChild(affirmationDiv);
}, index * 200);
});
}
function createPersonalizedAffirmations() {
const affirmations = [];
const responseValues = Object.values(responses);
// Base affirmations that can be customized
const templates = [
"You possess a unique combination of strengths that make you irreplaceable in this world.",
"Your natural ability to {approach_style} challenges shows your inner wisdom and resilience.",
"The way you find fulfillment through {fulfillment_source} reflects your generous and meaningful spirit.",
"Your {communication_style} way of sharing ideas helps others see the world through your unique lens.",
"Every time you've overcome a fear or limitation, you've proven your incredible capacity for growth.",
"Your instinct to {decision_approach} important choices shows your thoughtful and authentic nature.",
"The support and guidance you naturally offer others is a testament to your caring heart.",
"Your {energy_environment} energy and creativity inspire those around you to be their best selves.",
"The unique perspective you bring to every situation is exactly what the world needs more of.",
"You have everything within you right now to create the confident, fulfilling life you envision."
];
// Personalize based on responses
let personalizedTemplates = [...templates];
// Customize based on challenge approach (question 0)
if (responses[0]) {
const approachMap = {
'analytical': 'methodically analyze and solve',
'collaborative': 'bring people together to tackle',
'intuitive': 'trust your instincts when facing',
'methodical': 'thoughtfully prepare for'
};
personalizedTemplates[1] = personalizedTemplates[1].replace('{approach_style}', approachMap[responses[0]] || 'thoughtfully approach');
}
// Customize based on fulfillment source (question 1)
if (responses[1]) {
const fulfillmentMap = {
'service': 'helping and uplifting others',
'creativity': 'creating and expressing beauty',
'growth': 'continuous learning and development',
'connection': 'building meaningful relationships'
};
personalizedTemplates[2] = personalizedTemplates[2].replace('{fulfillment_source}', fulfillmentMap[responses[1]] || 'meaningful pursuits');
}
// Customize based on communication style (question 3)
if (responses[3]) {
const commMap = {
'writer': 'thoughtful and detailed',
'speaker': 'energetic and engaging',
'visual': 'creative and visual',
'intimate': 'warm and personal'
};
personalizedTemplates[3] = personalizedTemplates[3].replace('{communication_style}', commMap[responses[3]] || 'authentic');
}
// Customize based on decision-making (question 8)
if (responses[8]) {
const decisionMap = {
'authenticity': 'stay true to your authentic self in',
'compassion': 'consider the impact on others in',
'integrity': 'do what\'s right in',
'growth': 'seek learning opportunities in'
};
personalizedTemplates[5] = personalizedTemplates[5].replace('{decision_approach}', decisionMap[responses[8]] || 'thoughtfully make');
}
// Customize based on energy environment (question 6)
if (responses[6]) {
const energyMap = {
'focused': 'focused and intentional',
'social': 'collaborative and dynamic',
'dynamic': 'flexible and adaptable',
'natural': 'grounded and authentic'
};
personalizedTemplates[7] = personalizedTemplates[7].replace('{energy_environment}', energyMap[responses[6]] || 'positive');
}
// Add specific affirmations based on text responses
if (responses[5] && responses[5].trim()) {
affirmations.push(`The way people seek you out for ${responses[5].toLowerCase()} shows the special gift you bring to others' lives.`);
}
if (responses[9] && responses[9].trim()) {
affirmations.push(`Your desire to grow in ${responses[9].toLowerCase()} shows your courage to expand beyond your comfort zone.`);
}
if (responses[11] && responses[11].trim()) {
affirmations.push(`Your unique perspective - ${responses[11].toLowerCase()} - is exactly the kind of thinking our world needs more of.`);
}
// Select 10 affirmations (7 from templates + 3 from text responses or additional templates)
for (let i = 0; i