page FrameworkGuidesGuide { layout = "showcase" seo { title = "Framework guides" description = "WRNexus components use native HTML semantics and framework component mounts." } view {
Getting Started

Framework guides

WRNexus components use native HTML semantics and framework component mounts.

Mount components

Use the component mount name directly in .wrn views. Props are typed, slots remain server-rendered, and declared outputs reach parent bindings.

Own page composition

Keep application structure in pages and layouts. Use library components for reusable behavior, then add application-specific styles in the owning .wrn file.

Prefer semantic contracts

Choose props, slots, and outputs over selectors that depend on a component's internal markup. This keeps applications compatible with framework upgrades.

Inspect before integrating

Use the CLI component inspector for the exact prop, slot, and output contract, then type-check the finished page.

Quick start

bunx wrnexus inspect component Navbar .
bunx wrnexus typecheck .
} }