Settings

Sidebar
Display
Profile Panel
👤

John Doe

Administrator
  • 📊 Dashboard
  • 📝 Forms
  • 📋 Tables
Commands
🚀
Go to Page
Navigate to a page
/go
🌓
Toggle Theme
Switch between light and dark mode
/theme
📐
Toggle Sidebar
Show or hide the sidebar
/sidebar
⚙️
Open Settings
Open the settings panel
/settings
Search In
📄
Pages
Search pages
:p
🧩
Components
Search component pages
:c

Full Width Layout

Two Columns Layout (50/50)

Three Columns Layout (33/33/33)

Sidebar Layout (25/75)

Asymmetric Layout (67/33)

Four Columns Layout (25/25/25/25)

Mixed Pattern (1-2-1-2-1)

Complex Nested Layout

Card Layout Patterns

Various arrangements of cards using responsive grid layouts.

Full Width Card

Full Width Card

This card spans the entire width of the container.

Two Column Cards (50/50)

Left Card

Half width card on the left side.

Right Card

Half width card on the right side.

Three Column Cards (33/33/33)

Card 1

First of three equal cards.

Card 2

Second of three equal cards.

Card 3

Third of three equal cards.

Sidebar + Main Cards (25/75)

Sidebar Card

Narrow sidebar card for navigation or quick info.

Main Content Card

Wide main content card taking up most of the space.

Four Column Cards (25/25/25/25)

Card A

Quarter width card.

Card B

Quarter width card.

Card C

Quarter width card.

Card D

Quarter width card.

Asymmetric Cards (67/33)

Main Content Card

Larger card taking up 2/3 of the space for main content.

Side Panel Card

Smaller card for supplementary content.

Code Examples

Common Layout Patterns

<!-- Two Column (50/50) -->
<Grid>
  <Column size="100" md="50">Left</Column>
  <Column size="100" md="50">Right</Column>
</Grid>

<!-- Three Column (33/33/33) -->
<Grid>
  <Column size="100" md="1-3">Col 1</Column>
  <Column size="100" md="1-3">Col 2</Column>
  <Column size="100" md="1-3">Col 3</Column>
</Grid>

<!-- Sidebar Layout (25/75) -->
<Grid>
  <Column size="100" md="25">Sidebar</Column>
  <Column size="100" md="75">Main</Column>
</Grid>

Cards in Grid

<!-- Same height cards in grid -->
<Grid sameHeight>
  <Column size="100" md="1-3">
    <Card titleText="Card 1">
      <p>Short content</p>
    </Card>
  </Column>
  <Column size="100" md="1-3">
    <Card titleText="Card 2">
      <p>Longer content stretches,
         and sibling cards match height.</p>
    </Card>
  </Column>
  <Column size="100" md="1-3">
    <Card titleText="Card 3">
      <p>Also matches height</p>
    </Card>
  </Column>
</Grid>

Nested Grids

<!-- Nested layout with sidebar -->
<Grid>
  <Column size="100" md="2-3">
    <!-- Nested grid inside main area -->
    <Grid>
      <Column size="100" md="50">Nested Left</Column>
      <Column size="100" md="50">Nested Right</Column>
    </Grid>
  </Column>
  <Column size="100" md="1-3">
    <Card titleText="Sidebar">Content</Card>
  </Column>
</Grid>

Keyboard Shortcuts

No shortcuts registered.