import Link from 'next/link'
export default function Page(props) {
return (
<>
index
{JSON.stringify(props)}
/blog/first
/blog/second
>
)
}
export function getStaticProps() {
console.log('revalidating /')
return {
props: {
now: Date.now(),
},
revalidate: 1,
}
}