10 lines
199 B
TypeScript
10 lines
199 B
TypeScript
import styles from './hero.module.css'
|
|
|
|
export function Hero() {
|
|
return (
|
|
<div className={styles.hero}>
|
|
<img className={styles.image} src="/img/img1.jpg" alt="Nyhavn" />
|
|
</div>
|
|
)
|
|
}
|