# Page

Returning a Page object will automatically render the HTML response for that page.

****

****

```php "/site/config/config.php"
return [
  'routes' => [
    [
      'pattern' => 'custom/response',
      'action'  => function () {
        return page('projects');
      }
    ]
  ]
];
```