\`\`\`javascript // WIX Customer Intelligence Agent (CIA) Tracking Script // CIA Base URL: https://cjscottiii.pythonanywhere.com const CIA_BASE_URL = "https://cjscottiii.pythonanywhere.com"; /** * Generates a simple unique ID (UUID v4-like) * @returns {string} A unique ID string */ function generateUUID() { return 'xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx'.replace(/[xy]/g, function(c) { var r = Math.random() * 16 | 0, v = c == 'x' ? r : (r & 0x3 | 0x8); return v.toString(16); }); } /** * Retrieves the customer ID from localStorage or creates a new one. * @returns {string} The unique customer ID. */ function getOrCreateCustomerId() { let customerId = localStorage.getItem('cia_customer_id'); if (!customerId) { customerId = generateUUID(); localStorage.setItem('cia_customer_id', customerId); console.log("CIA: New customer ID created:", customerId); } else { console.log("CIA: Existing customer ID retrieved:", customerId); } return customerId; } /** * Sends a page view tracking event to the CIA backend. * @param {string} customerId - The unique ID of the customer. */ function trackPageView(customerId) { const trackUrl = \`\${CIA_BASE_URL}/api/v1/track\`; const data = { customer_id: customerId, page_url: window.location.href, event_type: 'page_view' }; fetch(trackUrl, { method: 'POST', headers: { 'Content-Type': 'application/json', }, body: JSON.stringify(data), }) .then(response => response.json()) .then(data => { console.log('CIA Tracking Success:', data); }) .catch((error) => { console.error('CIA Tracking Error:', error); }); } /** * Fetches a personalized recommendation from the CIA backend. * @param {string} customerId - The unique ID of the customer. */ function fetchRecommendation(customerId) { const recommendationUrl = \`\${CIA_BASE_URL}/api/v1/recommendation/\${customerId}\`; fetch(recommendationUrl) .then(response => response.json()) .then(data => { console.log('CIA Recommendation:', data.recommendation); // This is the key output. In a future step, you will use Wix Velo/Corvid // to capture this recommendation and display it to the user on the page. // For now, check your browser's console (F12) to confirm it is working. }) .catch((error) => { console.error('CIA Recommendation Error:', error); }); } // Main execution block (function() { const customerId = getOrCreateCustomerId(); trackPageView(customerId); fetchRecommendation(customerId); })(); \`\`\`
top of page
Vitamin D-3 - Organic Vegan

It’s Time to Reclaim Your Energy!

 

Support Healthy Brain Function and A Healthy Immune System While Promoting Bone Health - With REGAL PERFORMANCE's Organic Vitamin D3!  and It’s USDA organic.

 

Made 100% plant based from LICHEN ...not sheep Lanolin! Because it comes from a plant source, it is arguably a purer source, it isn't contaminated by sheep dip or pesticides.

 

  • Promotes Healthy Bones: D3 plays a huge supporting role in the absorption of calcium and other minerals important for bone strength.*
  • Supports Healthy Immune System
  • Supports healthy brain function: plays a big role in brain development and function and mood.
  • Maintains Healthy Blood Sugar Levels: D3 maintains healthy blood glucose levels that are already within the normal range.*
  • Supports Respiratory Health: D3 is a breath of fresh air in supporting healthy respiratory and healthy lung function.*
  • Promotes heart health: supports healthy blood vessels and cardiovascular musclesspan

Directions:

Take one (1) vegan Tablet per day with a glass of water.

Capsules can be opened and added to water, juice or smoothies.

Vitamin D-3 - Organic Vegan

$34.99Price
Price Options
One-time purchase
$34.99
Monthly Subscription
Subscribe and Save !
$29.99every month until canceled
  • * THESE STATEMENTS HAVE NOT BEEN EVALUATED BY THE FOOD AND DRUG ADMINISTRATION.
    THIS PRODUCT IS NOT INTENDED TO DIAGNOSE, TREAT, CURE, OR PREVENT ANY DISEASE.

Follow us on Instagram

STAY CONNECTED:

  • Facebook Link
  • Instagram Link

These statements have not been evaluated by the Food and Drug Administration. These products are not intended to diagnose, treat, cure or prevent any disease.

*Our AI tool is designed to be privacy-focused. The information you enter during your search with RAPHA© is not stored or logged in any way. It is used solely to process your search query and provide relevant product suggestions or health tips. Once the search is complete, the information is immediately erased from the AI system.
 

Subscribe for Updates

Copyright© 2019 by ATHLETIC SPA NUTRTITION - ALL RIGHTS RESERVED UCC 1-308.

Site Proudly Designed by MINDYOURBIZ.COM

bottom of page