Interactive examples

Astro’s islands architecture lets us hydrate only the components that truly need JavaScript. The rest of the page ships as static HTML.

D3 bar chart (client:load)

The chart below hydrates immediately on the client to render an SVG visualization. It relies on d3-scale and friends but keeps the payload scoped to this single container.

Civic readiness across focus areas

three.js cube (client:visible)

The three.js example waits until the canvas scrolls into view before hydrating. That keeps the main bundle small until a reader intentionally explores the 3D content.

Tips for future islands

This site is under active development. Content and features may change.