Static Route Example (SSG)
This page is pre-rendered at build time for maximum performance
< 50ms
Load Time
Excellent
SEO Score
100%
Cacheable
SSG Features
Pre-rendered HTML
Instant loading
Perfect SEO
CDN-friendly
Zero JavaScript required
Implementation
---
// Force SSG - this page will be pre-rendered at build time
export const prerender = true;
const staticData = {
title: "Static Route Example (SSG)",
loadTime: "< 50ms",
seo: "Excellent"
};
---
<Layout title={staticData.title}>
<h1>{staticData.title}</h1>
<p>This content is generated at build time!</p>
</Layout> Build Information
This page was pre-rendered at build time: 2025-06-16T04:01:32.986Z
Every visitor sees the same HTML, served instantly from CDN.