mirror of
https://github.com/remvze/moodist.git
synced 2025-12-17 17:04:15 +00:00
Merge branch 'main' into develop
This commit is contained in:
commit
b143e46e92
3 changed files with 29 additions and 9 deletions
|
|
@ -18,7 +18,7 @@
|
||||||
& .counter {
|
& .counter {
|
||||||
width: max-content;
|
width: max-content;
|
||||||
padding: 6px 16px;
|
padding: 6px 16px;
|
||||||
margin-bottom: 12px;
|
margin-bottom: 16px;
|
||||||
font-size: var(--font-xsm);
|
font-size: var(--font-xsm);
|
||||||
color: var(--color-foreground-subtle);
|
color: var(--color-foreground-subtle);
|
||||||
background: linear-gradient(var(--color-neutral-100), transparent);
|
background: linear-gradient(var(--color-neutral-100), transparent);
|
||||||
|
|
@ -31,7 +31,14 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
& .desc {
|
& .title {
|
||||||
|
margin-bottom: 8px;
|
||||||
|
font-family: var(--font-heading);
|
||||||
|
font-size: var(--font-md);
|
||||||
|
font-weight: 600;
|
||||||
|
}
|
||||||
|
|
||||||
|
& .body {
|
||||||
line-height: 1.6;
|
line-height: 1.6;
|
||||||
color: var(--color-foreground-subtle);
|
color: var(--color-foreground-subtle);
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -7,10 +7,22 @@ export function About() {
|
||||||
const count = soundCount();
|
const count = soundCount();
|
||||||
|
|
||||||
const paragraphs = [
|
const paragraphs = [
|
||||||
'Craving a calming escape from the daily grind? Do you need the perfect soundscape to boost your focus or lull you into peaceful sleep? Look no further than Moodist, your free and open-source ambient sound generator! Ditch the subscriptions and registrations – with Moodist, you unlock a world of soothing and immersive audio experiences, entirely for free.',
|
{
|
||||||
`Dive into an expansive library of ${count} carefully curated sounds. Nature lovers will find solace in the gentle murmur of streams, the rhythmic crash of waves, or the crackling warmth of a campfire. Cityscapes come alive with the soft hum of cafes, the rhythmic clatter of trains, or the calming white noise of traffic. And for those seeking deeper focus or relaxation, Moodist offers binaural beats and color noise designed to enhance your state of mind.`,
|
body: 'Craving a calming escape from the daily grind? Do you need the perfect soundscape to boost your focus or lull you into peaceful sleep? Look no further than Moodist, your free and open-source ambient sound generator! Ditch the subscriptions and registrations – with Moodist, you unlock a world of soothing and immersive audio experiences, entirely for free.',
|
||||||
'The beauty of Moodist lies in its simplicity and customization. No complex menus or confusing options – just choose your desired sounds, adjust the volume balance, and hit play. Want to blend the gentle chirping of birds with the soothing sound of rain? No problem! Layer as many sounds as you like to create your personalized soundscape oasis.',
|
title: 'Free Ambient Sounds',
|
||||||
"Whether you're looking to unwind after a long day, enhance your focus during work, or lull yourself into a peaceful sleep, Moodist has the perfect soundscape waiting for you. The best part? It's completely free and open-source, so you can enjoy its benefits without any strings attached. Start using Moodist today and discover your new haven of tranquility and focus!",
|
},
|
||||||
|
{
|
||||||
|
body: `Dive into an expansive library of ${count} carefully curated sounds. Nature lovers will find solace in the gentle murmur of streams, the rhythmic crash of waves, or the crackling warmth of a campfire. Cityscapes come alive with the soft hum of cafes, the rhythmic clatter of trains, or the calming white noise of traffic. And for those seeking deeper focus or relaxation, Moodist offers binaural beats and color noise designed to enhance your state of mind.`,
|
||||||
|
title: 'Carefully Curated Sounds',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
body: 'The beauty of Moodist lies in its simplicity and customization. No complex menus or confusing options – just choose your desired sounds, adjust the volume balance, and hit play. Want to blend the gentle chirping of birds with the soothing sound of rain? No problem! Layer as many sounds as you like to create your personalized soundscape oasis.',
|
||||||
|
title: 'Create Your Soundscape',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
body: "Whether you're looking to unwind after a long day, enhance your focus during work, or lull yourself into a peaceful sleep, Moodist has the perfect soundscape waiting for you. The best part? It's completely free and open-source, so you can enjoy its benefits without any strings attached. Start using Moodist today and discover your new haven of tranquility and focus!",
|
||||||
|
title: 'Sounds for Every Moment',
|
||||||
|
},
|
||||||
];
|
];
|
||||||
|
|
||||||
return (
|
return (
|
||||||
|
|
@ -24,7 +36,8 @@ export function About() {
|
||||||
<span>0{index + 1}</span> / 0{paragraphs.length}
|
<span>0{index + 1}</span> / 0{paragraphs.length}
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<p className={styles.desc}>{paragraph}</p>
|
<h2 className={styles.title}>{paragraph.title}</h2>
|
||||||
|
<p className={styles.body}>{paragraph.body}</p>
|
||||||
</div>
|
</div>
|
||||||
))}
|
))}
|
||||||
</Container>
|
</Container>
|
||||||
|
|
|
||||||
|
|
@ -29,9 +29,9 @@ export function Hero() {
|
||||||
<div className={styles.right}></div>
|
<div className={styles.right}></div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<p className={styles.desc}>
|
<h2 className={styles.desc}>
|
||||||
<Balancer>Ambient sounds for focus and calm.</Balancer>
|
<Balancer>Ambient sounds for focus and calm.</Balancer>
|
||||||
</p>
|
</h2>
|
||||||
|
|
||||||
<p className={styles.sounds}>
|
<p className={styles.sounds}>
|
||||||
<span className={styles.icon}>
|
<span className={styles.icon}>
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue