You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
476 B
19 lines
476 B
import Head from 'next/head'
|
|
import styles from '../styles/components/IndexHeader.module.css'
|
|
|
|
const Header = () => (
|
|
<div>
|
|
<Head>
|
|
<link rel="icon" href="/sign.png" />
|
|
</Head>
|
|
|
|
<div className={styles.items}>
|
|
{/* <a href="/">Home</a> */}
|
|
<a href="/commissions">Commissions</a>
|
|
<a href="/gallery">Gallery</a>
|
|
<a href="/contact">Contact</a>
|
|
</div>
|
|
</div>
|
|
)
|
|
|
|
export default Header |