# `layouts/` [Directory](https://nuxt.com/docs/getting-started/views#layouts)
Layouts are wrappers around pages that contain a common User Interface for several pages, such as a header and footer display. Layouts are Vue files using `` components to display the page content. The `layouts/default.vue` file will be used by default. Custom layouts can be set as part of your page metadata.
>> If you only have a single layout in your application, we recommend using app.vue with the `` component instead.
*layouts/default.vue*
````html
````
*pages/index.vue*
````html
Welcome to the homepage
This is an auto-imported component
````
*pages/about.vue*
````html
This page will be displayed at the /about route.
````
If you want to create more layouts and learn how to use them in your pages, find more information in the [Layouts section](https://nuxt.com/docs/guide/directory-structure/layouts).