After about one month of development, I finally finished building my blog.
For this project, I chose to use Next.js, TailwindCSS, and MDX. Next.js is mostly for routing, SSR, and SSG. Tailwind allows me to style my components quickly and efficiently. MDX is great for adding custom content that is hard to achieve with Markdown.
Design
I followed DaisyUI's semantic color system for my blog's design, with the following colors:
- Primary
- Secondary
- Accent
- Neutral
- Info
- Success
- Warning
- Error
Features
Dark mode
Implemented through media queries and TailwindCSS.
However, the dark mode color scheme is not as good as the light mode, so I still need to improve it in the future.
Syntax highlighting
Implemented with Shiki and rehype-pretty-code
def some_function():
print("This is a test function")
Table of contents
Implemented by finding all the headings in the post and generating a list of links. (source code)
Latex Support
Implemented with KaTeX
Other features
- RSS feed
- SEO
- Sitemap
- Posts search by categories and tags
- Pagination and infinite scroll
- GitHub flavored markdown