Skip to content

Commit

Permalink
Merge pull request #1 from AlexStack/nextjs14
Browse files Browse the repository at this point in the history
feat: upgrade to next.js 14
  • Loading branch information
AlexStack committed Nov 1, 2023
2 parents 88e35a6 + 316a88d commit 79a488c
Show file tree
Hide file tree
Showing 4 changed files with 603 additions and 578 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# NextJs 13.x + MUI 5.x + React Hook Form + TypeScript Starter and Boilerplate
# NextJs 14.x + MUI 5.x + React Hook Form + TypeScript Starter and Boilerplate

<div align="center">
<h2>2023/2024: 🔋 NextJs 13.x + MUI 5.x + TypeScript Starter</h2>
<p>The scaffold for NextJs 13.x (App Router), React Hook Form, Material UI(MUI 5.x),Typescript and ESLint, and TypeScript with Absolute Import, Seo, Link component, pre-configured with Husky.</p>
<h2>2023/2024: 🔋 NextJs 14.x + MUI 5.x + TypeScript Starter</h2>
<p>The scaffold for NextJs 14.x (App Router), React Hook Form, Material UI(MUI 5.x),Typescript and ESLint, and TypeScript with Absolute Import, Seo, Link component, pre-configured with Husky.</p>

<p>With simple example of NextJs API, React-hook-form with zod, fetch remote api, 404/500 error pages, MUI SSR usage</p>

Expand All @@ -16,7 +16,7 @@ If you prefer Tailwind css, check this: [Tailwind-CSS-Version](https://github.co

This repository is 🔋 battery packed with:

- ⚡️ Next.js 13.x with App Router
- ⚡️ Next.js 14.x with App Router
- ⚛️ React 18.x
- ✨ TypeScript
- 💨 Material UI — Ready to use Material Design components [check here for the usage](https://mui.com/material-ui/getting-started/usage/)
Expand Down
7 changes: 4 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,12 @@
"@mui/icons-material": "^5.14.9",
"@mui/material": "^5.14.10",
"dayjs": "^1.11.10",
"next": "^13.4.10",
"next": "^14.0.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.46.2",
"react-icons": "^4.10.1"
"react-icons": "^4.10.1",
"zod": "^3.22.4"
},
"devDependencies": {
"@commitlint/cli": "^16.3.0",
Expand All @@ -41,7 +42,7 @@
"@typescript-eslint/parser": "^5.62.0",
"autoprefixer": "^10.4.14",
"eslint": "^8.45.0",
"eslint-config-next": "^13.4.10",
"eslint-config-next": "^14.0.1",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"eslint-plugin-unused-imports": "^2.0.0",
Expand Down
4 changes: 2 additions & 2 deletions src/constants/config.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
export const SITE_CONFIG = {
title: 'NextJs 13.x + MUI 5.x + TypeScript Starter',
title: 'NextJs 14.x + MUI 5.x + TypeScript Starter',
description:
'The scaffold for NextJs 13.x (App Router), React Hook Form, Material UI(MUI 5.x),Typescript and ESLint, and TypeScript with Absolute Import, Seo, Link component, pre-configured with Husky',
'The scaffold for NextJs 14.x (App Router), React Hook Form, Material UI(MUI 5.x),Typescript and ESLint, and TypeScript with Absolute Import, Seo, Link component, pre-configured with Husky',
/** Without additional '/' on the end, e.g. https://hihb.com */
url: 'https://hihb.com',
};
Expand Down

0 comments on commit 79a488c

Please sign in to comment.