Static Page Example

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

This page was built at: 2026-03-30T22:08:58.328Z


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