const posts = [ { id: 1, title: 'Yoga', href: '#', description: 'Step fully into your body. The perfect start to the morning.', image: '/images/act1.png', }, { id: 2, title: 'Meditation', href: '#', description: 'Open your mind, enter a deeper state of awareness.', image: '/images/act3.png', }, { id: 3, title: 'Nutrition', href: '#', description: 'Gluten-free, vegetarian, vegan, detox diets, & more.', image: '/images/act2.png', }, ] export default function activities() { return (

Mind, Body, and Soul: For a Deeper Connection.

{posts.map((post) => ( ))}
) }