mirror of
https://github.com/mastermindzh/rickvanlieshout.com
synced 2025-09-10 18:26:15 +02:00
added legal pages, resized tablet view, fixed prettier
This commit is contained in:
@@ -14,13 +14,9 @@ type Props = {
|
||||
const Menu: React.FC<Props> = ({ menu }: Props) => (
|
||||
<nav className={styles.menu}>
|
||||
<ul className={styles.list}>
|
||||
{menu.map((item) => (
|
||||
{menu?.map((item) => (
|
||||
<li className={styles.item} key={item.path}>
|
||||
<Link
|
||||
to={item.path}
|
||||
className={styles.link}
|
||||
activeClassName={styles.active}
|
||||
>
|
||||
<Link to={item.path} className={styles.link} activeClassName={styles.active}>
|
||||
{item.label}
|
||||
</Link>
|
||||
</li>
|
||||
|
Reference in New Issue
Block a user