import Link from 'next/link' import fs from 'fs' import path from 'path' export async function getStaticProps() { const text = fs .readFileSync(path.join(process.cwd(), 'world.txt'), 'utf8') .trim() return { props: { world: text, time: new Date().getTime(), }, revalidate: true, } } export default ({ world, time }) => ( <>
hello {world}
time: {time} to home