diff --git a/src/components/sections/about.astro b/src/components/sections/about.astro deleted file mode 100644 index 0116c16..0000000 --- a/src/components/sections/about.astro +++ /dev/null @@ -1,82 +0,0 @@ ---- -import { Balancer } from 'react-wrap-balancer'; -import { FaQuestion } from 'react-icons/fa/index'; - -import { Container } from '@/components/container'; -import { count as soundCount } from '@/lib/sounds'; - -const count = soundCount(); ---- - -
- -
-
-
- -
-
- -

What is Moodist?

-

- - Moodist is a free and open-source ambient sound generator featuring {count} carefully curated sounds. Create your ideal atmosphere for relaxation, focus, or creativity - with this versatile tool. - -

-
-
- - diff --git a/src/components/sections/ready.astro b/src/components/sections/ready.astro deleted file mode 100644 index f36ce60..0000000 --- a/src/components/sections/ready.astro +++ /dev/null @@ -1,121 +0,0 @@ ---- -import { RiSparkling2Line } from 'react-icons/ri/index'; - -import { Container } from '@/components/container'; ---- - -
- -
-
-
-
- -
-
- -

Are you ready?

-

Create your calm oasis in seconds!

- -
-
-
- - - - diff --git a/src/components/sections/why.astro b/src/components/sections/why.astro deleted file mode 100644 index 8aa8d77..0000000 --- a/src/components/sections/why.astro +++ /dev/null @@ -1,184 +0,0 @@ ---- -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 { FaQuestion } from 'react-icons/fa/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} - - )} -
- )) - } -
-
-
- -