rsnext/docs/advanced-features/amp-support/introduction.md
Luis Alvarez D d1fdd2bbf8 Add descriptions to documentation pages (#9901)
* Added descriptions

* Added descriptions to API Reference

* Added descriptions to API Routes

* Added descriptions to basic features

* Added descriptions to the routing docs

* Update exportPathMap.md

Co-authored-by: Joe Haddad <timer150@gmail.com>
2020-01-03 13:16:51 -05:00

40 lines
1.2 KiB
Markdown

---
description: With minimal config, and without leaving React, you can start adding AMP and improve the performance and speed of your pages.
---
# AMP Support
<details>
<summary><b>Examples</b></summary>
<ul>
<li><a href="https://github.com/zeit/next.js/tree/canary/examples/amp">AMP</a></li>
</ul>
</details>
AMP means "_Accelerated Mobile Pages_", and it's, in short words: A faster HTML.
With Next.js you can turn any React page into an AMP page, with minimal config, and without leaving React.
You can read more about AMP in the official [amp.dev](https://amp.dev/) site.
## Enabling AMP
To enable AMP support for a page, and to learn more about the different AMP configs, read the [API documentation for `next/amp`](/docs/api-reference/next/amp.md).
## Related
For more information on what to do next, we recommend the following sections:
<div class="card">
<a href="/docs/advanced-features/amp-support/adding-amp-components.md">
<b>AMP Components:</b>
<small>Make your pages more interactive with AMP components.</small>
</a>
</div>
<div class="card">
<a href="/docs/advanced-features/amp-support/amp-validation.md">
<b>AMP Validation:</b>
<small>Learn about how Next.js validates AMP pages.</small>
</a>
</div>