Skip to content

Latest commit

Β 

History

History
38 lines (35 loc) Β· 1.71 KB

File metadata and controls

38 lines (35 loc) Β· 1.71 KB

Nextjs

Features

  • πŸ”₯ Next.js for Static Site Generator
  • 🎨 Integrate with Tailwind CSS
  • πŸŽ‰ Type checking TypeScript
  • βœ… Strict Mode for TypeScript and React 17
  • ✏️ Linter with ESLint (default NextJS, NextJS Core Web Vitals and Airbnb configuration)
  • πŸ›  Code Formatter with Prettier
  • 🦊 Husky for Git Hooks
  • 🚫 Lint-staged for running linters on Git staged files
  • πŸ—‚ VSCode configuration: Debug, Settings, Tasks and extension for PostCSS, ESLint, Prettier, TypeScript
  • πŸ€– SEO metadata, JSON-LD and Open Graph tags with Next SEO
  • βš™οΈ Bundler Analyzer
  • 🌈 Include a FREE minimalist theme
  • πŸ’― Maximize lighthouse score
.
β”œβ”€β”€ README.md                # README file
β”œβ”€β”€ next.config.js           # Next JS configuration
β”œβ”€β”€ docs                     # documentation mdx
β”œβ”€β”€ e2e                      # Cypress e2e
β”œβ”€β”€ public                   # Public folder
β”‚   └── assets
β”‚       └── images           # Image used by default template
β”œβ”€β”€ src
β”‚   β”œβ”€β”€ layout               # Atomic layout components
β”‚   β”œβ”€β”€ models               # TypeScript models
β”‚   β”œβ”€β”€ constants            # Constants
β”‚   β”œβ”€β”€ pages                # Next JS pages
β”‚   β”œβ”€β”€ styles               # PostCSS style folder with Tailwind
β”‚   β”œβ”€β”€ i18n                 # Locale i18n
β”‚   └── utils                # Utility folder
β”œβ”€β”€ tailwind.config.js       # Tailwind CSS configuration
└── tsconfig.json            # TypeScript configuration