From 38da02a0d3b08e8f8802d6cf76a04ae656e10b76 Mon Sep 17 00:00:00 2001 From: MAZE Date: Thu, 8 Feb 2024 18:32:08 +0330 Subject: [PATCH] feat: change the copy for features --- src/components/sections/why.astro | 29 ++++++++++++++++++----------- 1 file changed, 18 insertions(+), 11 deletions(-) diff --git a/src/components/sections/why.astro b/src/components/sections/why.astro index 8e64416..666577a 100644 --- a/src/components/sections/why.astro +++ b/src/components/sections/why.astro @@ -2,6 +2,7 @@ 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'; @@ -13,31 +14,43 @@ const count = soundCount(); const reasons = [ { Icon: BiMoney, - body: "Immerse yourself in Moodist's ambient world without spending a dime. All features are accessible to everyone, ensuring a cost-free auditory journey.", + body: 'Enjoy unlimited, cost-free access to our ambient sounds.', id: 'free-access', label: 'Free Access', }, { Icon: BiUserCircle, - body: 'Embrace simplicity – Moodist skips the registration process. No accounts, no hassle; just click, play, and enjoy the serenity.', + body: 'Dive into tranquility without any sign-up requirements.', id: 'no-registration', label: 'No Registration', }, { Icon: BsSoundwave, - body: `With a curated collection of ${count} sounds, Moodist offers a spectrum of auditory experiences. From the tranquility of nature to the beat of urban life, find the perfect backdrop for your mood.`, + body: `Explore ${count} varied ambient sounds for every mood.`, id: 'diverse-sounds', label: 'Diverse Sounds', }, { Icon: RxMixerHorizontal, - body: 'Tailor your ambiance effortlessly. Moodist allows you to create personalized mixes, adjusting the blend of sounds to suit your focus or relaxation needs.', + 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: 'Trust in transparency. Moodist is open-source, fostering collaboration and providing users with a platform they can explore and understand.', + body: 'Transparent and collaborative – built on open-source principles.', id: 'open-source', label: 'Open-Source', link: { @@ -45,12 +58,6 @@ const reasons = [ url: 'https://github.com/remvze/moodist', }, }, - { - Icon: BsStars, - body: 'Navigate with ease. Moodist provides a user-friendly interface, ensuring a smooth and hassle-free experience as you explore the diverse soundscape of calm and rhythm.', - id: 'seamless-experience', - label: 'Seamless Experience', - }, ]; ---