Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

This is a Next.js, Tailwind CSS blogging starter template. Comes out of the box configured with the latest technologies to make technical writing a breeze. Easily configurable and customizable. Perfect as a replacement to existing Jekyll and Hugo individual blogs.

License

NotificationsYou must be signed in to change notification settings

forker-man/tailwind-nextjs-starter-blog

 
 

Repository files navigation

tailwind-nextjs-banner

Tailwind Nextjs Starter Blog

GitHub Repo starsGitHub forksTwitter URLSponsor

Deploy with Vercel

This is aNext.js,Tailwind CSS blogging starter template. Probably the most feature-rich Next.js markdown blogging template out there. Comes out of the box configured with the latest technologies to make technical writing a breeze. 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 theFAQ 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!

Examples

Using the template? Feel free to create a PR and add your blog to this list.

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 fromTailwindlabs blog.

I wanted it to be nearly as feature-rich as popular blogging templates likebeautiful-jekyll andHugo Academic but with the best of React's ecosystem and current web development's best practices.

Features

  • Easy styling customization withTailwind 3.0 and primary color attribute
  • Near perfect lighthouse score -Lighthouse report
  • Lightweight, 45kB first load JS, uses Preact in production build
  • Mobile-friendly view
  • Light and dark theme
  • Supportsplausible,simple analytics and google analytics
  • MDX - write JSX in markdown documents!
  • Server-side syntax highlighting with line numbers and line highlighting viarehype-prism-plus
  • Math display supported viaKaTeX
  • Citation and bibliography support viarehype-citation
  • Automatic image optimization vianext/image
  • Flexible data retrieval withmdx-bundler
  • Support for tags - each unique tag will be its own page
  • Support for multiple authors
  • Blog templates
  • TOC component
  • Support for nested routing of blog posts
  • Newsletter component with support for mailchimp, buttondown, convertkit and klaviyo
  • Supportsgiscus,utterances or disqus
  • Projects page
  • Preconfigured security headers
  • SEO friendly with RSS feed, sitemaps and more!

Sample posts

Quick Start Guide

  1. JS (official support)
npx degit https://github.com/timlrx/tailwind-nextjs-starter-blog.git
or TS (community support)
npx degit timlrx/tailwind-nextjs-starter-blog#typescript
  1. PersonalizesiteMetadata.js (site related information)
  2. Personalizeauthors/default.md (main author)
  3. ModifyprojectsData.js
  4. ModifyheaderNavLinks.js to customize navigation links
  5. Add blog posts
  6. Deploy on Vercel

Installation

npm install

Development

First, run the development server:

npm start
or
npm run dev

Openhttp://localhost:3000 with your browser to see the result.

You can start editing the page by modifyingpages/index.js. The page auto-updates as you edit the file.

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 indata/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 andcss/tailwind.css - contain the tailwind 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.

components/social-icons - to add other icons, simply copy an svg file fromSimple Icons and map them inindex.js. Other icons useheroicons.

components/MDXComponents.js - pass your own JSX code or React component by specifying it over here. You can then call them directly in the.mdx or.md file. By default, a custom link and image component is passed.

layouts - main templates used in pages.

pages - pages to route to. Read theNext.js documentation for more information.

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

Frontmatter

Frontmatter followsHugo's standards.

Currently 7 fields are supported.

title (required)date (required)tags (required, can be empty array)lastmod (optional)draft (optional)summary (optional)images (optional, if none provided defaults to socialBanner in siteMetadata config)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`)

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: falsesummary: '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.'images: ['/static/images/canada/mountains.jpg', '/static/images/canada/toronto.jpg']authors: ['default', 'sparrowhawk']layout: PostLayout---

Compose

Runnode ./scripts/compose.js to bootstrap a new post.

Follow the interactive prompt to generate a post with pre-filled front matter.

Deploy

Vercel
The easiest way to deploy the template is to use theVercel Platform from the creators of Next.js. Check out theNext.js deployment documentation for more details.

Netlify / GitHub Pages / Firebase etc.
As the template usesnext/image for image optimization, additional configurations have to be made to deploy on other popular static hosting websites likeNetlify orGitHub Pages. An alternative image optimization provider such as Imgix, Cloudinary or Akamai has to be used. Alternatively, replace thenext/image component with a standard<img> tag. Seenext/image documentation for more details.

The API routes used in the newsletter component cannot be used in a static site export. You will need to use a form API endpoint provider and substitute the route in the newsletter component accordingly. Other hosting platforms such as Netlify also offer alternative solutions - please refer to their docs for more information.

Support

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 projectsponsor.

Licence

MIT ©Timothy Lin

About

This is a Next.js, Tailwind CSS blogging starter template. Comes out of the box configured with the latest technologies to make technical writing a breeze. Easily configurable and customizable. Perfect as a replacement to existing Jekyll and Hugo individual blogs.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • JavaScript96.2%
  • CSS2.5%
  • Other1.3%

[8]ページ先頭

©2009-2025 Movatter.jp