import { BiMoney, BiUserCircle, BiLogoGithub } from 'react-icons/bi/index'; import { Balancer } from 'react-wrap-balancer'; import { Container } from '@/components/container'; import styles from './why.module.css'; export function Why() { const reasons = [ { body: 'Moodist is a cost-free solution, offering you high-quality ambient sounds without any financial commitment.', icon: , id: 'free', label: 'Completely Free', }, { body: 'Say goodbye to the hassle of signing up; Moodist is ready to enhance your experience without any registration requirements, ensuring quick and easy access.', icon: , id: 'registration-free', label: 'Without Registration', }, { body: "Moodist's open-source nature means you can trust its transparency and contribute to its improvement, making it a community-driven tool for everyone's benefit.", icon: , id: 'open-source', label: 'Open Source', }, ]; return (

Why use Moodist?

{reasons.map(reason => (
{reason.icon}

{reason.label}

{reason.body}

))}
); }