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

timlrx/tailwind-nextjs-starter-blog

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

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. Version 2 is based on Next App directory withReact Server Component and usesContentlayer to manage markdown content.

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 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!

Variations

Note: These are community contributed forks using different frameworks or with significant changes to the codebase - not officially supported.

Astro alternative -Tailwind Astro Template.

Remix-run alternative -Tailwind Remix-run Starter Blog Template.

Internationalization support -Template with i18n andsource code.

Examples V2

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

Examples V1

v1-blogs-showcase.webm

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.

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

  • Next.js with Typescript
  • Contentlayer to manage content logic
  • Easy styling customization withTailwind 3.0 and primary color attribute
  • MDX - write JSX in markdown documents!
  • Near perfect lighthouse score -Lighthouse report
  • Lightweight, 85kB first load JS
  • Mobile-friendly view
  • Light and dark theme
  • Font optimization withnext/font
  • Integration withpliny that provides:
    • Multiple analytics options includingUmami,Plausible,Simple Analytics, Posthog and Google Analytics
    • Comments viaGiscus,Utterances or Disqus
    • Newsletter API and component with support for Mailchimp, Buttondown, Convertkit, Klaviyo, Revue, Emailoctopus and Beehiiv
    • Command palette search withKbar or Algolia
  • Server-side syntax highlighting with line numbers and line highlighting viarehype-prism-plus
  • Math display supported viaKaTeX
  • Citation and bibliography support viarehype-citation
  • Github alerts viaremark-github-blockquote-alert
  • Automatic image optimization vianext/image
  • Support for tags - each unique tag will be its own page
  • Support for multiple authors
  • 3 different blog layouts
  • 2 different blog listing layouts
  • Support for nested routing of blog posts
  • Projects page
  • Preconfigured security headers
  • SEO friendly with RSS feed, sitemaps and more!

Sample posts

Quick Start Guide

  1. Clone the repo
npx degit'timlrx/tailwind-nextjs-starter-blog'
  1. PersonalizesiteMetadata.js (site related information)
  2. Modify the content security policy innext.config.js if you want to useother analytics provider or a commenting solution other than giscus.
  3. Personalizeauthors/default.md (main author)
  4. ModifyprojectsData.ts
  5. ModifyheaderNavLinks.ts to customize navigation links
  6. Add blog posts
  7. Deploy on Vercel

Installation

yarn

Please note, that if you are using Windows, you may need to run:

$env:PWD =$(Get-Location).Path

Development

First, run the development server:

yarn dev

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

Edit the layout inapp or content indata. 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 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 - 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. SeeContentlayer 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 avoidexisting issues with Next.js.

layouts - main templates used in pages:

  • There are currently 3 post layouts available:PostLayout,PostSimple andPostBanner.PostLayout is the default 2 column layout with meta and author information.PostSimple is a simplified version ofPostLayout, whilePostBanner features a banner image.
  • There are 2 blog listing layouts:ListLayout, the layout used in version 1 of the template with a search bar andListLayoutWithTags, currently used in version 2, which omits the search bar but includes a sidebar with information on the tags.

app - 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

Content is modelled usingContentlayer, which allows you to define your own content schema and use it to generate typed content objects. SeeContentlayer documentation for more information.

Frontmatter

Frontmatter followsHugo's standards.

Please refer tocontentlayer.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: 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: PostLayoutcanonicalUrl: https://tailwind-nextjs-starter-blog.vercel.app/blog/introducing-tailwind-nextjs-starter-blog---

Deploy

GitHub Pages

Apages.yml workflow is already provided. Simply select "GitHub Actions" in:Settings > Pages > Build and deployment > Source.

Vercel

The easiest way to deploy the template is to deploy onVercel. Check out theNext.js deployment documentation for more details.

Netlify

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.

SeeNext.js on Netlify for suggested configuration values and more details.

Static hosting services (GitHub Pages / S3 / Firebase etc.)

Run:

$ EXPORT=1 UNOPTIMIZED=1 yarn build

Then, deploy the generatedout folder or runnpx serve out it locally.

Important

If deploying with a URL base path, likehttps://example.org/myblog you need an extraBASE_PATH shell-var to the build command:

$ EXPORT=1 UNOPTIMIZED=1 BASE_PATH=/myblog yarn build

=> In your code,${process.env.BASE_PATH || ''}/robots.txt will print"/myblog/robots.txt" in theout build (or only/robots.txt ifyarn dev, ie: on localhost:3000)

Tip

Alternatively toUNOPTIMIZED=1, to continue usingnext/image, you can use an alternative image optimization provider such as Imgix, Cloudinary or Akamai. Seeimage optimization documentation for more details.

Consider removing the following features that cannot be used in a static build:

  1. Comment outheaders() fromnext.config.js.
  2. Removeapi 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.

Frequently Asked Questions

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.

Topics

Resources

License

Stars

Watchers

Forks

Sponsor this project

 

Packages

No packages published

[8]ページ先頭

©2009-2025 Movatter.jp