This is a Next.js project bootstrapped with create-next-app.
First, run the development server:
yarn devOpen http://localhost:3000 with your browser to see the result.
You can start editing the page by modifying pages/index.mdx. The page auto-updates as you edit the file.
The next-mdx-enhanced package allows us to assign layouts to specific pages as well as a default layout. These are stored in /src/layouts and are configurable via frontmatter in .mdx files.
---
layout: 'ultimate-guide'
title: 'an Ultimate Guide'
---This will use /src/layouts/ultimate-guide.tsx as a layout.