// Generated by scripts/generate-showcase.mjs. Do not edit directly. page PublicPageShellDetail { layout = "showcase" state playground_maxWidth = ctx.url.searchParams.get("pg_maxWidth") ?? "full" state playground_fullWidth = ctx.url.searchParams.get("pg_fullWidth") ?? "false" state playground_headerOffset = ctx.url.searchParams.get("pg_headerOffset") ?? "none" state playground_background = ctx.url.searchParams.get("pg_background") ?? "default" state playground_overflow = ctx.url.searchParams.get("pg_overflow") ?? "clip" state playground_minHeight = ctx.url.searchParams.get("pg_minHeight") ?? "screen" state playground_size = ctx.url.searchParams.get("pg_size") ?? "default" state playground_color = ctx.url.searchParams.get("pg_color") ?? "primary" state playground_variant = ctx.url.searchParams.get("pg_variant") ?? "default" state playground_class = ctx.url.searchParams.get("pg_class") ?? "showcase-instance showcase-instance--1" seo { title = "Public Page Shell" description = "Consistent structural wrapper for public-facing pages." } view {
Layout component

Public Page Shell

Consistent structural wrapper for public-facing pages.

10 props3 slots0 eventsTheme readyResponsive
Interactive playground

Configure Public Page Shell

Change any prop and inspect the server-rendered component immediately.

Live preview
before slot
after slot
Component code
<PublicPageShell
  fullWidth="false">
  <!-- Add before, default, after slot content here -->
</PublicPageShell>
Component props10 controls
Live examples

Designed for real product surfaces

Compare configurations and resize the browser to check responsive behavior.

Recommended

Production default

Balanced spacing, hierarchy, and content for the most common product workflow.

01
Live preview
before slot
after slot
Component usage.wrn
<PublicPageShell
  fullWidth="false">
  <!-- Add before, default, after slot content here -->
</PublicPageShell>
Dense UI

Compact application

A tighter variation for dashboards, side panels, tables, and operational interfaces.

02
Live preview
before slot
after slot
Component usage.wrn
<PublicPageShell
  fullWidth="false"
  size="sm"
  variant="secondary">
  <!-- Add before, default, after slot content here -->
</PublicPageShell>
Extended

Rich configuration

A more expressive variation using additional data, stronger emphasis, and optional states.

03
Live preview
before slot
after slot
Component usage.wrn
<PublicPageShell
  size="lg"
  variant="success">
  <!-- Add before, default, after slot content here -->
</PublicPageShell>
Component events

Events

Public events declared by this component. Custom events bubble from the component root and expose state through event.detail.

No public component events.
Component API

Props and configuration

All content and behavior shown above is supplied through these props and slots.

PropTypeDefaultRequired
maxWidthstring"full"No
fullWidthbooleantrueNo
headerOffsetstring"none"No
backgroundstring"default"No
overflowstring"clip"No
minHeightstring"screen"No
sizestring"default"No
colorstring"primary"No
variantstring"default"No
classstring""No
} }