From 81e66667765879da624544c5d915c1562f2ab34c Mon Sep 17 00:00:00 2001 From: MAZE Date: Thu, 8 Feb 2024 19:35:44 +0330 Subject: [PATCH] fix: add correct count to description --- src/layouts/layout.astro | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/layouts/layout.astro b/src/layouts/layout.astro index 1a97f47..03b3898 100644 --- a/src/layouts/layout.astro +++ b/src/layouts/layout.astro @@ -1,4 +1,6 @@ --- +import { count } from '@/lib/sounds'; + import '@/styles/global.css'; interface Props { @@ -9,14 +11,13 @@ interface Props { const title = Astro.props.title || 'Moodist: Ambient Sounds for Focus and Calm'; const 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.`; --- -