mirror of
https://github.com/remvze/moodist.git
synced 2025-12-17 08:54:13 +00:00
fix: add correct count to description
This commit is contained in:
parent
56802b67f2
commit
81e6666776
1 changed files with 3 additions and 2 deletions
|
|
@ -1,4 +1,6 @@
|
||||||
---
|
---
|
||||||
|
import { count } from '@/lib/sounds';
|
||||||
|
|
||||||
import '@/styles/global.css';
|
import '@/styles/global.css';
|
||||||
|
|
||||||
interface Props {
|
interface Props {
|
||||||
|
|
@ -9,14 +11,13 @@ interface Props {
|
||||||
const title = Astro.props.title || 'Moodist: Ambient Sounds for Focus and Calm';
|
const title = Astro.props.title || 'Moodist: Ambient Sounds for Focus and Calm';
|
||||||
const description =
|
const description =
|
||||||
Astro.props.description ||
|
Astro.props.description ||
|
||||||
"Moodist is a free online ambient sound generator for focus and calm, offering 35 handpicked sounds in various categories, from nature's tranquil melodies to the soothing ambiance of urban life.";
|
`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.`;
|
||||||
---
|
---
|
||||||
|
|
||||||
<!doctype html>
|
<!doctype html>
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
<head>
|
<head>
|
||||||
<meta charset="UTF-8" />
|
<meta charset="UTF-8" />
|
||||||
<meta content="Astro description" name="description" />
|
|
||||||
<meta content="width=device-width" name="viewport" />
|
<meta content="width=device-width" name="viewport" />
|
||||||
<meta content={Astro.generator} name="generator" />
|
<meta content={Astro.generator} name="generator" />
|
||||||
<meta content="#18181b" name="theme-color" />
|
<meta content="#18181b" name="theme-color" />
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue