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.
36 lines
1.2 KiB
36 lines
1.2 KiB
import Head from 'next/head';
|
|
import Image from 'next/image';
|
|
import styles from '../styles/components/Menu.module.css';
|
|
import Link from 'next/link';
|
|
import logo from "../public/img/logoblue.png";
|
|
|
|
export default function Menu() {
|
|
return (
|
|
<menu className={styles.menu}>
|
|
<div className="container">
|
|
<Link href="/">
|
|
<a>
|
|
<Image src={logo} />
|
|
<h2>{process.env.NEXT_PUBLIC_NAME?.toUpperCase()}</h2>
|
|
</a>
|
|
</Link>
|
|
|
|
<div>
|
|
<Link href="">About</Link>
|
|
<Link href="">Blog</Link>
|
|
<Link href="">Showcase</Link>
|
|
<Link href="">Services</Link>
|
|
<Link href="">Contact</Link>
|
|
</div>
|
|
|
|
{/* <div>
|
|
<Link href="/about">About</Link>
|
|
<Link href="/about">Blog</Link>
|
|
<Link href="/about">Showcase</Link>
|
|
<Link href="/about">Services</Link>
|
|
<Link href="/about">Contact</Link>
|
|
</div> */}
|
|
</div>
|
|
</menu>
|
|
)
|
|
} |