asi-calculator/components/Header/Header.tsx
Matthias Kretschmann ef42f24ab5
add new ASI logo
* add throughout UI as token logo
* add all favicon files, social image
2024-06-10 14:54:58 +01:00

15 lines
394 B
TypeScript

import { title, description } from '@/constants'
import styles from './Header.module.css'
import { Logo } from '@/components/Logo'
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>
)
}