diff --git a/src/components/hero.astro b/src/components/hero.astro index 3867d59..f4b1765 100644 --- a/src/components/hero.astro +++ b/src/components/hero.astro @@ -1,5 +1,6 @@ --- import { Balancer } from 'react-wrap-balancer'; +import { BsSoundwave } from 'react-icons/bs/index'; import { Container } from '@/components/container'; import { count as soundCount } from '@/lib/sounds'; @@ -27,7 +28,10 @@ const count = soundCount(); Ambient sounds for focus and calm.

-

{count} Sounds

+

+ + {count} Sounds +

@@ -84,16 +88,29 @@ const count = soundCount(); & .sounds { position: relative; display: flex; + column-gap: 8px; align-items: center; justify-content: center; width: max-content; - padding: 6px 16px; + height: 28px; + padding-right: 12px; margin: 20px auto 0; font-size: var(--font-xsm); + color: var(--color-foreground-subtle); background-color: var(--color-neutral-100); border: 1px solid var(--color-neutral-200); border-radius: 100px; + & .icon { + display: flex; + align-items: center; + justify-content: center; + height: 100%; + padding: 0 8px 0 12px; + color: var(--color-foreground); + border-right: 1px solid var(--color-neutral-200); + } + &::before { position: absolute; top: -1px;