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.

28 lines
987 B

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";
import ThemeToggle from './themetoggle';
export default function Menu() {
return (
<menu className={styles.menu}>
<div className="container">
<Link href="/">
<a>
<Image src={logo} alt="dubbelnull logo" />
<h2>{process.env.NEXT_PUBLIC_NAME?.toUpperCase()}</h2>
</a>
</Link>
<div>
<Link href="/about">🏢 About</Link>
<Link href="/showcase"> Showcase</Link>
{/* <Link href="/services">Services</Link> */}
<Link href="/contact">📮 Contact</Link>
<ThemeToggle />
</div>
</div>
</menu>
)
}