Probably the most feature-rich Next.js markdown blogging template out there. Easily configurable and customizable. Perfect as a replacement to existing Jekyll and Hugo individual blogs.
Check out the documentation below to get started.
Facing issues? Check the FAQ page and do a search on past issues. Feel free to open a new issue if none has been posted previously.
Feature request? Check the past discussions to see if it has been brought up previously. Otherwise, feel free to start a new discussion thread. All ideas are welcomed!
Variations
Note: These are community contributed forks using different frameworks or with significant changes to the codebase - not officially supported.
LyricsDecode.com - A song lyrics website offering original lyrics, Romanisation, and English translations with customisable viewing options.
bmacharia.com - Benson Macharia's technical blog about Cybersecurity and IT Risk Management.
armujahid.me - Abdul Rauf's personal blog about tech and random stuff.
leohuynh.dev - 🇻🇳 Leo's dev blog – stories, insights, and ideas. Add /snippets, /books pages, add ProfileCard, CareerTimeline components and many more. (source)
OpenSats Blog - A 501(c)(3) public charity which aims to sustainably fund free and open-source projects. (source code)
Schedles Blog - Social media scheduling tips, strategies, and product updates for content creators. (Project Link)
Engineering Notes - Jonas Vetterle Personal Website & Blog. I'm writing articles about software engineering that interest me, including AI and Quantum Computing
Screenager.dev - Personal Website as Portfolio & Blog. Documenting my learning journey and some guides.
kezhenxu94's blog - Blogging about dev, tips & tricks, tutorials and more.
Parminder's blog - Thoughts on software development, life and more.
taitrd.com - Tai's personal dev blog, technologies and coding activity with Dynamodb practice (source code).
Shelton's Blog - Sharing insights on TypeScript full-stack development (Next.js, React, Hono, Supabase), web crawlers, and other cutting-edge technologies.
ByteGeometry Blog - Software development blog about tech trends and business growth. AI and web-apps development (Project Link)
Farhad's Blog - Farhad's personal website sharing tech news and insights on emerging technologies, with a focus on AI and Data Science (Project Link)
Utanzu Cybersecurity – A thriving community where mentorship and expert training help cybersecurity professionals unlock their full potential and advance their careers.
trungtmnguyen.com - 🇻🇳 Trung's personal and technical blogs – some idea about me, tips, ideas and learned. Add some custom components, like: UnderlineHoverLink, Timeline, neon-border styles and will have more in the future. (source)
Ryan Fitton's Blog – A custom theme version with 'Portfolio' section. Used as a personal Blog/Portfolio for development projects. (source code)
ktovoz.com - Kto's personal blog, sharing life, technology. Added article categories and article directory navigation 「中文」
Using the template? Feel free to create a PR and add your blog to this list.
Thanks to the community of users and contributors to the template! We are no longer accepting new blog listings over here. If you have updated from version 1 to version 2, feel free to remove your blog from this list and add it to the one above.
kaveh.page - Kaveh Tehrani's personal blog. Added tags directory, profile card, time-to-read on posts directory, etc.
drakerossman.com - Drake Rossman's blog about NixOS, Rust, Software Architecture and Engineering Management, as well as general musings.
meamenu.com - Landing page and product blog starting from this template. It also uses framer-motion for animations, custom layout templates, waline for blog comments and primereact forms [Ita]
giovanni.orciuolo.it - Giovanni Orciuolo's personal website, blog and everything nerd.
Motivation
I wanted to port my existing blog to Nextjs and Tailwind CSS but there was no easy out of the box template to use so I decided to create one. Design is adapted from Tailwindlabs blog.
I wanted it to be nearly as feature-rich as popular blogging templates like beautiful-jekyll and Hugo Academic but with the best of React's ecosystem and current web development's best practices.
Edit the layout in app or content in data. With live reloading, the pages auto-updates as you edit them.
Extend / Customize
data/siteMetadata.js - contains most of the site related information which should be modified for a user's need.
data/authors/default.md - default author information (required). Additional authors can be added as files in data/authors.
data/projectsData.js - data used to generate styled card on the projects page.
data/headerNavLinks.js - navigation links.
data/logo.svg - replace with your own logo.
data/blog - replace with your own blog posts.
public/static - store assets such as images and favicons.
tailwind.config.js and css/tailwind.css - tailwind configuration and stylesheet which can be modified to change the overall look and feel of the site.
css/prism.css - controls the styles associated with the code blocks. Feel free to customize it and use your preferred prismjs theme e.g. prism themes.
contentlayer.config.ts - configuration for Contentlayer, including definition of content sources and MDX plugins used. See Contentlayer documentation for more information.
components/MDXComponents.js - pass your own JSX code or React component by specifying it over here. You can then use them directly in the .mdx or .md file. By default, a custom link, next/image component, table of contents component and Newsletter form are passed down. Note that the components should be default exported to avoid existing issues with Next.js.
layouts - main templates used in pages:
There are currently 3 post layouts available: PostLayout, PostSimple and PostBanner. PostLayout is the default 2 column layout with meta and author information. PostSimple is a simplified version of PostLayout, while PostBanner features a banner image.
There are 2 blog listing layouts: ListLayout, the layout used in version 1 of the template with a search bar and ListLayoutWithTags, currently used in version 2, which omits the search bar but includes a sidebar with information on the tags.
next.config.js - configuration related to Next.js. You need to adapt the Content Security Policy if you want to load scripts, images etc. from other domains.
Post
Content is modelled using Contentlayer, which allows you to define your own content schema and use it to generate typed content objects. See Contentlayer documentation for more information.
Please refer to contentlayer.config.ts for an up to date list of supported fields. The following fields are supported:
title (required)
date (required)
tags (optional)
lastmod (optional)
draft (optional)
summary (optional)
images (optional)
authors (optional list which should correspond to the file names in `data/authors`. Uses `default` if none is specified)
layout (optional list which should correspond to the file names in `data/layouts`)
canonicalUrl (optional, canonical url for the post for SEO)
Here's an example of a post's frontmatter:
---
title: 'Introducing Tailwind Nexjs Starter Blog'
date: '2021-01-12'
lastmod: '2021-01-18'
tags: ['next-js', 'tailwind', 'guide']
draft: false
summary: 'Looking for a performant, out of the box template, with all the best in web technology to support your blogging needs? Checkout the Tailwind Nextjs Starter Blog template.'
Netlify’s Next.js runtime configures enables key Next.js functionality on your website without the need for additional configurations. Netlify generates serverless functions that will handle Next.js functionalities such as server-side rendered (SSR) pages, incremental static regeneration (ISR), next/images, etc.
See Next.js on Netlify for suggested configuration values and more details.
=> In your code, ${process.env.BASE_PATH || ''}/robots.txt will print "/myblog/robots.txt" in the out build (or only /robots.txt if yarn dev, ie: on localhost:3000)
[!TIP]
Alternatively to UNOPTIMIZED=1, to continue using next/image, you can use an alternative image optimization provider such as Imgix, Cloudinary or Akamai. See image optimization documentation for more details.
Consider removing the following features that cannot be used in a static build:
Comment out headers() from next.config.js.
Remove api folder and components which call the server-side function such as the Newsletter component. Not technically required and the site will build successfully, but the APIs cannot be used as they are server-side functions.
Using the template? Support this effort by giving a star on GitHub, sharing your own blog and giving a shoutout on Twitter or becoming a project sponsor.