Files
WRNexusJS/examples/inter-app-api-showcase/apps/web/app/layouts/document.wrn
T
Clintchiz b1086d14e9
Quality / quality (ubuntu-latest) (push) Failing after 6m7s
Quality / quality (windows-latest) (push) Canceled after 0s
fix(auth): secure hydration and align password forms
2026-08-11 17:05:04 +05:30

23 lines
488 B
Plaintext

// Global document layout. The framework renders this once around the selected
// page layout and merges SEO metadata, styles, and scripts into <head>/<body>.
// Resolved theme, language, URL, and pathname are available as safe SSR props.
layout Document {
runtime = "server"
props {
theme = "light"
language = "en"
url = ""
pathname = "/"
}
view {
<html>
<head></head>
<body>
<div id="app"><slot /></div>
</body>
</html>
}
}