--- description: Add components from the AMP community to AMP pages, and make your pages more interactive. --- # Adding AMP Components The AMP community provide [many components](https://amp.dev/documentation/components/) to make AMP pages more interactive. You can add these components to your page by using `next/head`, as in the following example: ```jsx import Head from 'next/head' export const config = { amp: true } function MyAmpPage() { const date = new Date() return (