--- import { BiMoney, BiUserCircle, BiLogoGithub } from 'react-icons/bi/index'; import { BsSoundwave, BsStars } from 'react-icons/bs/index'; import { RxMixerHorizontal } from 'react-icons/rx/index'; import { IoShareSocialSharp } from 'react-icons/io5/index'; import { Balancer } from 'react-wrap-balancer'; import { Container } from '@/components/container'; import { count as soundCount } from '@/lib/sounds'; const count = soundCount(); const reasons = [ { Icon: BiMoney, body: 'Enjoy unlimited, cost-free access to our ambient sounds.', id: 'free-access', label: 'Free Access', }, { Icon: BiUserCircle, body: 'Dive into tranquility without any sign-up requirements.', id: 'no-registration', label: 'No Registration', }, { Icon: BsSoundwave, body: `Explore ${count} varied ambient sounds for every mood.`, id: 'diverse-sounds', label: 'Diverse Sounds', }, { Icon: RxMixerHorizontal, body: 'Shape your ideal ambiance by blending different sounds.', id: 'customizable-mixes', label: 'Customizable Mixes', }, { Icon: BsStars, body: 'Smooth and uninterrupted, focus on relaxation.', id: 'seamless-experience', label: 'Seamless Experience', }, { Icon: IoShareSocialSharp, body: 'Easily share your favorite sounds for a connected experience.', id: 'share-selections', label: 'Share Selections', }, { Icon: BiLogoGithub, body: 'Transparent and collaborative – built on open-source principles.', id: 'open-source', label: 'Open-Source', link: { label: 'Source Code', url: 'https://github.com/remvze/moodist', }, }, ]; ---

Why use Moodist?

{ reasons.map(reason => (

{reason.label}

{reason.body}

{reason.link && ( {reason.link.label} → )}
)) }