Images

Using Markdown

The image syntax in Markdown is also supported.
![title](/path/image.jpg)
Note that images using markdown cannot be resized. Use the image embed if you require specific sizing.

Using Embeds

To have more control over the size and placement of images, use HTML image tags. Pro tip: Use the <Frame> component to add a border around your image.
<Frame>
  <img src="/path/image.jpg" style={{ borderRadius: "0.5rem" }} />
</Frame>

Videos

Using HTML

Use HTML video tags to add videos. Use the <Frame> component to add a border.
<Frame>
  <video autoPlay muted loop playsInline className="w-full aspect-video" src="/path/video.mp4"></video>
</Frame>

Using iFrames

You can embed external videos like YouTube and Loom using iFrames.