- Published on
Media Example - Scenic Canada
- Authors
Shantnu Sharma
The scenic lands of Canada featuring maple leaves, snow-capped mountains, turquoise lakes and Toronto. Take in the sights in this photo gallery exhibition and see how easy it is to replicate with some MDX magic and tailwind classes.
Features images served using next/image
component. The locally stored images are located in a folder with the following path: /static/images/canada/[filename].jpg
Since we are using mdx, we can create a simple responsive flexbox grid to display our images with a few tailwind css classes.
Gallery




Videos
Implementation of Images
Its not too hard to implement these blocks in a post, just use the following available codes Implementation of images
<div className="-mx-2 flex flex-wrap overflow-hidden xl:-mx-2">
<div className="my-1 w-full overflow-hidden px-2 xl:my-1 xl:w-1/2 xl:px-2">

</div>
<div className="my-1 w-full overflow-hidden px-2 xl:my-1 xl:w-1/2 xl:px-2">

</div>
<div className="my-1 w-full overflow-hidden px-2 xl:my-1 xl:w-1/2 xl:px-2">

</div>
<div className="my-1 w-full overflow-hidden px-2 xl:my-1 xl:w-1/2 xl:px-2">

</div>
</div>
Implementation of Embeds
- ^For efficient youtube embeds
(least page load)
:
<Youtube id="lh8dNmneVyY" title="demo embed" />
- ^For any media (hls, mpeg-dash, mp4, webm) :
<video
title="sprite fight"
thumbnails="https://files.vidstack.io/sprite-fight/thumbnails.vtt"
poster="https://files.vidstack.io/sprite-fight/poster.webp"
source="https://files.vidstack.io/sprite-fight/hls/stream.m3u8"
/>
With MDX v2, one can interleave markdown in jsx as shown in the example code. That's all for now.