Select a preset:
Our Services
We connect you to top artists around the world.
Marketing Strategies
Mauris blandit aliquet elit, eget tincidunt nibh pulvinar.
Consulting
Mauris blandit aliquet elit, eget tincidunt nibh pulvinar.
Analysis
Mauris blandit aliquet elit, eget tincidunt nibh pulvinar.
Business Planning
Mauris blandit aliquet elit, eget tincidunt nibh pulvinar.
Development
Mauris blandit aliquet elit, eget tincidunt nibh pulvinar.
Lifetime support
Mauris blandit aliquet elit, eget tincidunt nibh pulvinar.
How to use this block
- Copy the source code and paste it into an
.mdx
file undercontent/blocks/NAME-OF-BLOCK.mdx
. - Include it in your page using the following code:
<Block src="NAME-OF-BLOCK" />
Using props
You can make this block's content dynamic by using props.
- Wrap the content of this block in a named export. Example:
content/blocks/NAME-OF-BLOCK.mdx
export const NameOfBlock = ({heading}) => (// Add the source code here.)
- Then use props in the block content by replacing the static text with props. Example:
<H1>{heading}</H1>
. - Include it on your page using the following code:
<Block src="NAME-OF-BLOCK" heading="A Heading" />
You can pass as many props as you need.
Docs
Read more on blocks in the docs.