import React from 'react'; const SOURCE_CARDS = [ { title: 'Clean eating basics', blurb: 'Whole foods, shorter ingredient lists, and practical swaps — guided by Kitchen Coach.', linkLabel: 'Ask Kitchen Coach in chat', }, { title: 'Fruits & vegetables', blurb: 'Easy prep ideas, tasty produce, and variety without overwhelm from Veggie Chef and Fruit Maven.', linkLabel: 'Try a produce question', }, { title: 'Books & superfoods', blurb: 'Book Advisor shortlists plus Superfoods Superman and Enzyme Explorer for deeper curiosity.', linkLabel: 'Browse ideas in chat', }, ]; const CareerSourcesSection = () => (

What you can explore

Grounded in Heidi Boudro's healthy-eating knowledge pack under knowledge/. Upload those markdown guides during chat when you want the advisors to cite specific articles or book notes.

{SOURCE_CARDS.map((card) => (

{card.title}

{card.blurb}

{card.linkLabel}

))}
); export default CareerSourcesSection;