Skip to content

Doc Group One Overview

Components Example Page

Architectural diagram showing how Connect queries data following the steps listed below in text

Select your external monitoring provider:

This is content specific to Datadog integration.

This is content specific to New Relic integration.

This is content specific to Axiom integration.

The PricingMessage component displays pricing information in a consistent format:

This is an example pricing message.

This feature is available on all plans.

Split testing is available on Pro plans and above.

Deploy notifications are available on all plans.

Deploy retention depends on your plan. For details, check the pricing page.

Start a deploy of your Netlify site after new Netlify form submissions
Netlify
Use this zap
Send Gmail emails for new Netlify form submissions
Gmail + Netlify
Use this zap
Add Netlify Form submissions to Airtable
Netlify Trigger node
Use workflow

The PromotedContent component allows you to display promotional or featured content in a visually distinct card-like container.

Here’s a basic example of the PromotedContent component:

<PromotedContent
urls={[
{ url: '/guides/getting-started', linkText: 'Getting Started' },
{ url: '/guides/deployment', linkText: 'Deployment Guide' },
{ url: 'https://netlify.com', linkText: 'Visit Netlify' }
]}
>
<p slot="title">Featured Content</p>
<div slot="description">
<p>Check out these important resources to help you get started with your project.</p>
</div>
</PromotedContent>

The above code renders a promotional content box with a title, description, and three links. External links automatically open in a new tab.

You can add a logo and a “Deploy to Netlify” button:

<PromotedContent
urls={[
{ url: '/guides/getting-started', linkText: 'Getting Started' },
{ url: '/guides/deployment', linkText: 'Deployment Guide' }
]}
logo="netlify"
dtnLink="https://app.netlify.com/start/deploy?repository=https://github.com/netlify/netlify-starter-template"
>
<p slot="title">Netlify Integration</p>
<div slot="description">
<p>Learn how to integrate your application with Netlify services.</p>
</div>
</PromotedContent>

For a more compact display, use the isAbbreviated prop:

<PromotedContent
urls={[
{ url: '/guides/getting-started', linkText: 'Getting Started' },
{ url: '/guides/deployment', linkText: 'Deployment Guide' }
]}
isAbbreviated={true}
dtnLink="https://app.netlify.com/start/deploy?repository=https://github.com/netlify/netlify-starter-template"
>
<p slot="title">Quick Links</p>
<div slot="description">
<p>Essential resources in a compact format.</p>
</div>
</PromotedContent>

Below are live examples of the PromotedContent component:

The ButtonDTN component is used within PromotedContent but can also be used independently:

Deploy to Netlify

The NetlifyNote component is used for general informational notes. It has a blue color scheme.

What's the Netlify Drawer?

The Netlify Drawer is the embedded review toolkit that allows Netlify Reviewers, Developers, and Owners to share context-rich feedback on the latest changes in a Deploy Preview or branch deploy. The Netlify Drawer powers collaborative Deploy Previews.

The NetlifyTip component is used for helpful tips and best practices. It has a green color scheme.

API tip

I’m a tip. Learn more about code in the docs or from an external link like this

The NetlifyWarning component is used for warnings about potential issues. It has an orange color scheme.

Warning on Functions

Warning!!! Learn more about code in the docs or from an external link like this

The NetlifyDanger component is used for critical warnings about dangerous actions. It has a red color scheme.

Danger Zone

This is dangerous! Learn more about code in the docs or from an external link like this