mirror of
https://github.com/kremalicious/asi-calculator.git
synced 2024-12-22 09:23:16 +01:00
15 lines
394 B
TypeScript
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>
|
|
)
|
|
}
|