import { SparklesIcon } from '@heroicons/react/20/solid' const features = [ { name: 'Eco-Friendly & Organic.', description: "Enjoy the finest local cuisine, fresh juices, and detox smoothies while supporting environmental responsibility. With natural cleaning products and solar-powered boats, VEDA offers a sophisticated, eco-friendly journey on the Nile.", icon: SparklesIcon, }, { name: 'Nurture Your Mind, Body, and Spirit', description: "Participate in yoga, breathwork, meditation, and wellness workshops in serene surroundings. Our holistic approach ensures your journey is enriching and rejuvenating, leaving you with a sense of balance and inner peace.", icon: SparklesIcon, }, { name: 'Immersive Cultural Experiences', description: "Explore the wonders of ancient Egypt with exclusive guided tours and in-depth cultural experiences. Gain unique insights into Egypt’s rich history and traditions, deepening your understanding of this timeless civilization.", icon: SparklesIcon, }, ] export default function NewFeatures2() { return (
{features.map((feature) => (
{' '}
{feature.description}
))}
New Features
) }