export async function getStaticProps() { return { props: { data } }; }
export async function getStaticProps() { const res = await fetch("url"); const data = await res.json(); return { props: { data } }; }