Static Page Example
Static Site Generation (SSG)
This page is statically generated at build time using getStaticProps
This page was built at: 2026-05-14T17:00:01.181Z
// This function runs at build time
export async function getStaticProps() {
return {
props: {
buildTime: new Date().toISOString()
}
}
}