---
title: Intro
description: Introduction slide with optional side image
---

# Intro Layout

The `intro` layout is designed for introduction slides with an optional side image and banner at the bottom.

## Parameters

| Parameter | Type | Default | Description |
|-----------|------|---------|-------------|
| `imageSrc` | string | - | Image URL or path |
| `imagePosition` | string | `'right'` | Position: `'left'` or `'right'` |
| `imageRatio` | string | `'40%'` | Image width percentage |
| `imageSize` | string | `'80%'` | Image scale |
| `enableLogo` | boolean | `true` | Show/hide banner |

## Basic Example

```markdown
---
layout: intro
imageSrc: /logo.png
imagePosition: right
imageRatio: 40%
---

# Module Introduction

## What You'll Learn

An overview of this section
```

## Without Image

```markdown
---
layout: intro
---

# Welcome

## Getting Started with Containers

Your journey begins here
```
