mirror of
https://github.com/remvze/moodist.git
synced 2025-12-17 17:04:15 +00:00
33 lines
763 B
TypeScript
33 lines
763 B
TypeScript
import { Balancer } from 'react-wrap-balancer';
|
|
|
|
import { Container } from '@/components/container';
|
|
|
|
import styles from './hero.module.css';
|
|
|
|
export function Hero() {
|
|
return (
|
|
<div className={styles.hero}>
|
|
<Container>
|
|
<img
|
|
alt="Faded Moodist Logo"
|
|
className={styles.logo}
|
|
height={45}
|
|
src="/logo.svg"
|
|
width={45}
|
|
/>
|
|
|
|
<div className={styles.title}>
|
|
<div className={styles.left} />
|
|
<h1>Moodist</h1>
|
|
<div className={styles.right} />
|
|
</div>
|
|
|
|
<p className={styles.desc}>
|
|
<Balancer>Ambient sounds for focus and calm.</Balancer>
|
|
</p>
|
|
|
|
<p className={styles.free}>100% Free</p>
|
|
</Container>
|
|
</div>
|
|
);
|
|
}
|