Static Page Example
Static Site Generation (SSG)
This page is statically generated at build time using getStaticProps
This page was built at: 2026-08-24T14:39:01.817Z
// This function runs at build time
export async function getStaticProps() {
return {
props: {
buildTime: new Date().toISOString()
}
}
}