---
title: Default
description: Standard content layout with automatic header extraction
---

# Default Layout

The `default` layout is the most commonly used layout for regular content slides. It automatically extracts the first H1 as a header and includes a logo in the top right.

## When to Use

- Regular content slides
- Bullet point lists
- General information
- Most standard slides

## Parameters

| Parameter | Type | Default | Description |
|-----------|------|---------|-------------|
| `logo` | boolean | `true` | Show/hide the logo |
| `textAlignment` | string | `'center'` | Vertical alignment: `'top'`, `'center'`, `'bottom'` |

## Basic Example

```markdown
---
layout: default
---

# Introduction to Docker

Docker is a platform for developing and running applications in containers.

## Key Benefits

- Consistency across environments
- Fast deployment
- Resource efficiency
- Isolation
```

## With Top Alignment

```markdown
---
layout: default
textAlignment: top
---

# Lots of Content

When you have extensive content, align to top for better readability.

- Point 1
- Point 2
- Point 3
- (many more points)
```
