// 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 {
Interactive playgroundConfigure Auth Split Layout
Change any prop and inspect the server-rendered component immediately.
Live preview
aside-extra slot
form slot
<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>
Live examplesDesigned for real product surfaces
Compare configurations and resize the browser to check responsive behavior.
Live preview
aside-extra slot
form slot
<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>
Live preview
aside-extra slot
form slot
<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>
Live preview
aside-extra slot
form slot
<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 eventsEvents
Public events declared by this component. Custom events bubble from the component root and expose state through event.detail.
No public component events.
Component APIProps and configuration
All content and behavior shown above is supplied through these props and slots.
| Prop | Type | Default | Required |
|---|
size | string | "default" | No |
color | string | "primary" | No |
eyebrow | string | "Secure identity" | No |
title | string | "Welcome back" | No |
description | string | "" | No |
brand | string | "Police Management System" | No |
features | string | [] | No |
class | string | "" | No |
}
}