import { Button } from '../components/Button' export default function Home() { const links = [ { label: 'Home', href: '#' }, { label: 'About', href: '/about' }, { label: 'Contact', href: '/contact' } ] return (
{links.map(link => ( <>
))}
) }