Static Page Example

Static Site Generation (SSG)
This page is statically generated at build time using getStaticProps

This page was built at: 2026-07-22T20:38:24.753Z


// This function runs at build time
export async function getStaticProps() {
  return {
    props: {
      buildTime: new Date().toISOString()
    }
  }
}