// Generated by scripts/generate-showcase.mjs. Do not edit directly. page AuthSplitLayoutDetail { layout = "showcase" state playground_size = ctx.url.searchParams.get("pg_size") ?? "default" state playground_color = ctx.url.searchParams.get("pg_color") ?? "primary" state playground_eyebrow = ctx.url.searchParams.get("pg_eyebrow") ?? "Secure identity" state playground_title = ctx.url.searchParams.get("pg_title") ?? "Auth Split Layout example" state playground_description = ctx.url.searchParams.get("pg_description") ?? "A polished default auth split layout for a modern application." state playground_brand = ctx.url.searchParams.get("pg_brand") ?? "Police Management System" state playground_features = ctx.url.searchParams.get("pg_features") ?? "[\n {\n \"label\": \"Team members\",\n \"values\": [\n \"5\",\n \"Unlimited\",\n \"Unlimited\"\n ]\n },\n {\n \"label\": \"Support\",\n \"values\": [\n \"Email\",\n \"Priority\",\n \"Dedicated\"\n ]\n },\n {\n \"label\": \"Audit history\",\n \"values\": [\n \"7 days\",\n \"90 days\",\n \"Custom\"\n ]\n }\n]" state playground_class = ctx.url.searchParams.get("pg_class") ?? "showcase-instance showcase-instance--1" seo { title = "Auth Split Layout" description = "Responsive 50/50 authentication layout with content and form regions." } view {
Layout component

Auth Split Layout

Responsive 50/50 authentication layout with content and form regions.

8 props2 slots0 eventsTheme readyResponsive
Interactive playground

Configure Auth Split Layout

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

Live preview
aside-extra slot
form slot
Component code
<AuthSplitLayout
  title="Auth Split Layout example"
  description="A polished default auth split layout for a modern application."
  features='[
    {
      "label": "Team members",
      "values": [
        "5",
        "Unlimited",
        "Unlimited"
      ]
    },
    {
      "label": "Support",
      "values": [
        "Email",
        "Priority",
        "Dedicated"
      ]
    },
    {
      "label": "Audit history",
      "values": [
        "7 days",
        "90 days",
        "Custom"
      ]
    }
  ]'>
  <!-- Add aside-extra, form slot content here -->
</AuthSplitLayout>
Component props8 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
aside-extra slot
form slot
Component usage.wrn
<AuthSplitLayout
  title="Auth Split Layout example"
  description="A polished default auth split layout for a modern application."
  features='[
    {
      "label": "Team members",
      "values": [
        "5",
        "Unlimited",
        "Unlimited"
      ]
    },
    {
      "label": "Support",
      "values": [
        "Email",
        "Priority",
        "Dedicated"
      ]
    },
    {
      "label": "Audit history",
      "values": [
        "7 days",
        "90 days",
        "Custom"
      ]
    }
  ]'>
  <!-- Add aside-extra, form slot content here -->
</AuthSplitLayout>
Dense UI

Compact application

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

02
Live preview
aside-extra slot
form slot
Component usage.wrn
<AuthSplitLayout
  size="sm"
  title="Compact Auth Split Layout"
  description="A compact configuration for dashboards and dense product surfaces."
  features='[
    {
      "label": "Team members",
      "values": [
        "5",
        "Unlimited",
        "Unlimited"
      ]
    },
    {
      "label": "Support",
      "values": [
        "Email",
        "Priority",
        "Dedicated"
      ]
    },
    {
      "label": "Audit history",
      "values": [
        "7 days",
        "90 days",
        "Custom"
      ]
    }
  ]'>
  <!-- Add aside-extra, form slot content here -->
</AuthSplitLayout>
Extended

Rich configuration

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

03
Live preview
aside-extra slot
form slot
Component usage.wrn
<AuthSplitLayout
  size="lg"
  title="Advanced Auth Split Layout"
  description="A richer configuration demonstrating additional content and hierarchy."
  features='[
    {
      "label": "Team members",
      "values": [
        "5",
        "Unlimited",
        "Unlimited"
      ]
    },
    {
      "label": "Support",
      "values": [
        "Email",
        "Priority",
        "Dedicated"
      ]
    },
    {
      "label": "Audit history",
      "values": [
        "7 days",
        "90 days",
        "Custom"
      ]
    }
  ]'>
  <!-- Add aside-extra, form slot content here -->
</AuthSplitLayout>
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
sizestring"default"No
colorstring"primary"No
eyebrowstring"Secure identity"No
titlestring"Welcome back"No
descriptionstring""No
brandstring"Police Management System"No
featuresstring[]No
classstring""No
} }