{
  "projectName": "HealthFitnessWellnessAffiliateApp",
  "templateSource": "stitch_template",
  "frontend": {
    "framework": "React",
    "style": "Neumorphism + Minimalist Clean",
    "components": [
      {
        "name": "Navbar",
        "type": "navigation",
        "properties": {
          "sticky": true,
          "menus": [
            "Home",
            "Products",
            "Blog",
            "Testimonials",
            "Subscribe",
            "Login/Signup"
          ]
        }
      },
      {
        "name": "HeroSection",
        "type": "banner",
        "properties": {
          "headline": "Transform Your Health, Elevate Your Life",
          "subtext": "Explore the best wellness products for all ages",
          "ctaButtons": [
            "Shop Now",
            "Explore Programs"
          ]
        }
      },
      {
        "name": "CategoryCards",
        "type": "dynamicCards",
        "properties": {
          "categories": [
            "Weight Loss",
            "Muscle Gain",
            "Mental Wellness",
            "Nutrition & Supplements",
            "Fitness Equipment",
            "Women’s Health",
            "Men’s Health"
          ],
          "hoverEffect": true
        }
      },
      {
        "name": "FeaturedProducts",
        "type": "productGrid",
        "properties": {
          "dynamic": true,
          "displayFields": [
            "image",
            "name",
            "benefits",
            "price",
            "rating",
            "affiliateLink"
          ],
          "badges": [
            "Best Seller",
            "Top Rated"
          ]
        }
      },
      {
        "name": "PersonalizedRecommendations",
        "type": "dynamicSection",
        "properties": {
          "filters": [
            "ageGroup",
            "gender",
            "fitnessGoal"
          ],
          "dynamicSuggestions": true
        }
      },
      {
        "name": "Testimonials",
        "type": "carousel",
        "properties": {
          "fields": [
            "userName",
            "story",
            "rating"
          ],
          "dynamic": true
        }
      },
      {
        "name": "BlogSection",
        "type": "articleGrid",
        "properties": {
          "dynamic": true,
          "fields": [
            "title",
            "image",
            "excerpt",
            "readMoreLink"
          ],
          "seoOptimized": true
        }
      },
      {
        "name": "EmailSubscription",
        "type": "form",
        "properties": {
          "fields": [
            "email"
          ],
          "cta": "Subscribe",
          "storeInBackend": true,
          "confirmationEmail": true
        }
      },
      {
        "name": "Footer",
        "type": "footer",
        "properties": {
          "links": [
            "About",
            "Contact",
            "Privacy Policy",
            "Affiliate Disclosure"
          ],
          "socialIcons": true
        }
      }
    ]
  },
  "backend": {
    "database": "PostgreSQL",
    "tables": [
      {
        "name": "Users",
        "fields": [
          "id",
          "name",
          "email",
          "passwordHash",
          "age",
          "gender",
          "fitnessGoals",
          "subscriptionPreferences"
        ]
      },
      {
        "name": "Products",
        "fields": [
          "id",
          "name",
          "category",
          "price",
          "benefits",
          "affiliateLink",
          "rating",
          "badge"
        ]
      },
      {
        "name": "Categories",
        "fields": [
          "id",
          "name"
        ]
      },
      {
        "name": "BlogArticles",
        "fields": [
          "id",
          "title",
          "content",
          "image",
          "seoMeta"
        ]
      },
      {
        "name": "Testimonials",
        "fields": [
          "id",
          "userName",
          "story",
          "rating"
        ]
      },
      {
        "name": "EmailSubscriptions",
        "fields": [
          "id",
          "email",
          "subscriptionDate",
          "confirmed"
        ]
      },
      {
        "name": "UserActivity",
        "fields": [
          "id",
          "userId",
          "action",
          "timestamp"
        ]
      }
    ]
  },
  "features": {
    "auth": [
      "Login",
      "Signup",
      "Profile Management"
    ],
    "dynamicContent": true,
    "filters": true,
    "ctaTracking": true,
    "responsive": true,
    "darkModeToggle": true,
    "analytics": true
  },
  "reactIntegration": {
    "componentsMapping": {
      "Navbar": "Navbar.jsx",
      "HeroSection": "HeroSection.jsx",
      "CategoryCards": "CategoryCards.jsx",
      "FeaturedProducts": "FeaturedProducts.jsx",
      "PersonalizedRecommendations": "Recommendations.jsx",
      "Testimonials": "Testimonials.jsx",
      "BlogSection": "BlogSection.jsx",
      "EmailSubscription": "EmailSubscription.jsx",
      "Footer": "Footer.jsx"
    },
    "stateManagement": "useState/useEffect",
    "apiReady": true
  }
}