Skip to main content

SectionContent

Child of the Section component to display content. You can have multiple SectionContent per Section.

Here you can add whatever you want, and add as many section content has you want.

<SectionContent>
{/* insert content */}
</SectionContent>

Props

Align

Override, if necessary, the align prop of the parent Section component.

Align all content and text to the left.

Align all content and text to the center.

Align all content and text to the right.

<SectionContent>
Align all content and text to the left
</SectionContent>
<SectionContent align="center">
Align all content and text to the center
</SectionContent>
<SectionContent align="right">
Align all content and text to the right
</SectionContent>