---
title: Full
description: Full-screen layout with no padding or logo
---

# Full Layout

The `full` layout provides a completely blank canvas with no padding, margin, or logo. Perfect for custom content that needs maximum space.

## When to Use

- Custom HTML/CSS layouts
- Full-screen graphics or visualizations
- Interactive demos
- Maximum creative control needed

## Parameters

| Parameter | Type | Default | Description |
|-----------|------|---------|-------------|
| `logo` | boolean | `false` | Show/hide logo (default is hidden) |

## Basic Example

```markdown
---
layout: full
---

<div class="flex items-center justify-center h-full flex-col">
  <h1 class="text-4xl font-bold mb-4">Full Screen</h1>
  <p class="text-2xl">Complete creative freedom</p>
</div>
```

## With Custom Styling

```markdown
---
layout: full
---

<div class="h-full bg-gradient-to-br from-blue-500 to-purple-600 flex items-center justify-center">
  <div class="text-white text-center">
    <h1 class="text-6xl font-bold">Amazing</h1>
    <p class="text-3xl mt-4">Custom Design</p>
  </div>
</div>
```
