Dynamic Page

This page is rendered dynamically

Every visit to this route is resolved at runtime: the slug in the URL selects the content, the data is loaded during server-side rendering, and every string is localized through Paraglide.

Current slug / maintenance
Server-side rendering

Data is loaded before reaching the browser

The load function runs on the server and returns the list as serialized props, so the first render is fast and SEO-friendly.

Data from src/lib/data

Content lives in the data layer

This list is defined by a typed data file under src/lib/data and resolved into serialized props by the load function.

Paraglide internationalization

Every string is a localized message

The copy is written as Paraglide messages, so switching between English and Indonesian keeps this page fully translated.

Slug-based routing

The URL segment selects the content

The [slug] directory captures any path segment and exposes it to the page through the load function.

enid