An awesome blog system based on Next.js.
- Great landing page.
- Typing effect for landing page title.
- Great fluid of post card.
- Great tags cloud page: separate page for posts under each tag.
- Great GitHub information card.
- Social share buttons.
- Full-featured
MDXsupport:- Optimized vertical rhythm for headings and paragraphs.
- Custom almost all
Markdownbuilt-in components. GFMsyntax support.Katexmath support.- Admonition container support.
- Emoji short code support.
- Image preview card support.
- Pretty code blocks support:
- Syntax highlight using
PrismJS. - macOS style code box.
- Line number support.
- Lines highlight support.
- Custom code title support.
- Quick code copy support.
- Syntax highlight using
- Out of box support for live code editor.
- Automatically generated sidebar navigation, table of contents, previous and next post navigation links.
- Nice animation for page transitions and dynamic routing.
- Motion almost everything.
- Disqus comments system.
- Customized 404 not found page.
- Dark mode support.
- ...and more.
- Lightning fast
HMR. - Dynamic route generation for
Markdownposts. - Optimized build using
Rustcompiler. TypeScriptstatic type checking.ESLint,StyleLintandPrettierstyle checking.- Out of box support for
tailwind.css. - Fully customizable styles through
tailwind.css. - Mobile-first approach in development.
- Out of box support for
Verceldeployment. - Separate components for everything.
- Complete
Reactcomponents testing usingJestandTesting Library. - E2E visual testing using
CypressforChromeandFirefox. - Optimization for
SEO: meta heading, sitemap androbots.txtsupport. - Progressive web app (
PWA): offline support and webapp manifest support. - ...and more.
Yaml Front + Markdown Body:
---
layout: post
title: 'React Redux Basic Notes'
subtitle: 'Daily I learned'
author: 'sabertaz'
date: 2022-02-03
tags:
- Redux
- React
- JavaScript
- Frontend Development
- Web Development
---
# React Redux Basic Notes
## Introduction
<... more contents>git clone --depth=1 https://github.com/sabertazimi/blog
cd blog
pnpm install# http://localhost:3000
pnpm startOpen the source code and start editing!
Your site is now running at http://localhost:3000!
Build for / path:
# Deploy to Vercel.
pnpm run buildA quick look at the top-level files and directories you'll see in a Next.js project.
.
βββ node_modules
βββ app
βββ components
βββ config
βββ contents
βββ cypress
βββ hooks
βββ layouts
βββ lib
βββ mocks
βββ public
βββ styles
βββ types
βββ .gitignore
βββ .tokeignore
βββ .prettierrc.json
βββ .stylelintrc.json
βββ .versionrc.json
βββ codecov.yml
βββ cypress.config.ts
βββ eslint.config.mjs
βββ jest.config.js
βββ jest.setup.js
βββ next-env.d.ts
βββ next.config.mjs
βββ package.json
βββ postcss.config.mjs
βββ sitemap.config.js
βββ tailwind.config.ts
βββ tsconfig.json
βββ LICENSE
βββ README.md/node_modules: This directory contains all of the modules of code.app: Pages components (SSG) based on Next.js App Router.components: React components building block.config: Blog site configuration (color/metadata/etc.).contents: Blog posts (.md/.mdx).cypress: Cypress E2E testing files.hooks: Hooks for shared logic.layouts: Layouts components.lib: Data fetching helper functions.mocks: Mock API for 3rd-party libraries for Jest testing.public: Static assets.styles: CSS stylesheets files.types: TypeScript shared type definition..gitignore: This file tells git which files it should not track..tokeignore: Code Lines configuration file..prettierrc.json: Prettier configuration file..stylelintrc.json: StyleLint configuration file..versionrc.json: Standard Version configuration file.codecov.yml: Codecov CI configuration file.cypress.config.ts: Cypress E2E testing configuration file.eslint.config.mjs: ESLint Flat configuration file.jest.config.js: Jest configuration file.jest.setup.js: Jest basic setup script (after environment setup).next-env.d.ts:Next.jsinternal type definition.next.config.mjs:Next.jsconfiguration file.package.json: A manifest file for Node.js projects.postcss.config.mjs: PostCSS configuration file.sitemap.config.js:next-sitemapconfiguration file.tailwind.config.ts: Tailwind.css configuration file.tsconfig.json: TypeScript configuration file.LICENSE: This Next.js starter is licensed under theMITlicense.README.md: A text file containing useful reference information.
import and export statements cannot be used inside an MDX file.
If you need to use components in your MDX files,
they should be provided to /components/MDX/index.ts.