asi-calculator/components/Header/Header.tsx
Matthias Kretschmann 51143f5980
migrate to biome (#28)
* migrate to biome

* get biome config from @kremalicious/config
2024-07-26 13:16:59 +01:00

15 lines
394 B
TypeScript

import { Logo } from '@/components/Logo'
import { description, title } from '@/constants'
import styles from './Header.module.css'
export function Header() {
return (
<header className={styles.header}>
<h1 className={styles.title}>
<Logo className={styles.logo} /> {`${title}`}
</h1>
<p className={styles.description}>{`${description}`}</p>
</header>
)
}