# Custom Page

This guide outlines the steps to add a custom page by creating a new blade file in your theme. Follow these steps to seamlessly integrate a new page into your project.

## Step 1: Create the Blade File

1. In your theme directory, create a new directory named `pages/single-pages/` if it doesn't already exist.

2. Create a new blade file for your page. For example, if you want to add a new "about-us" page, create a file named `about-us.blade.php`.

```plaintext
YOUR_TEMPLATE_DIR
|-- pages
|   |-- single-pages
|       |-- about-us.blade.php
```

## Step 2: Edit the Content

```php
<!-- about-us.blade.php -->

@extends('layouts.app') <!-- Include your default template here -->

@section('content')
    <div>
        <h1>About Us</h1>
        <p>Here is our story...</p>
    </div>
@endsection

```

## Step 3: Access the Page
You can now access your created page by navigating to the following URL in your browser: http://yourdomain.com/page/about-us