import styles from './header.module.css' import Link from 'next/link' const navItems = [ { title: 'new' }, { title: 'past' }, { title: 'show' }, { title: 'ask' }, { title: 'show' }, { title: 'jobs' }, { title: 'submit' } ] export default function Header() { return (
N Hacker Next
    {navItems.map(({ title }, index) => (
  • {title}
  • ))}
login
) }