This is the source code of my personal blog deployed on Vercel.
- Built with Nextjs, TailwindCSS, MDX and syntax highlighting.
- SEO with next-sitemap.
- Each tag page is automatically generated as static HTML + JSON (uses
getStaticProps()
)
- Every component is found under
./src/components
- All MDX blog posts are found under
./posts
- All images are under
./public/images
and uses the built-inImage
component from Nextjs