Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions next/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ npm-debug.log*
yarn-debug.log*
yarn-error.log*
.yarn*
!.yarnrc.yml

# local env files
.env*.local
Expand Down
1 change: 1 addition & 0 deletions next/.yarnrc.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
nodeLinker: node-modules
3 changes: 2 additions & 1 deletion next/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@
"formik": "2.4.9",
"framer-motion": "12.36.0",
"lodash": "4.18.1",
"lodash-es": "4.18.1",
"next": "16.1.6",
"prop-types": "15.8.1",
"react": "19.2.4",
Expand Down Expand Up @@ -60,5 +61,5 @@
"overrides": {
"eslint": "10.1.0"
},
"packageManager": "yarn@4.13.0"
"packageManager": "yarn@4.14.1"
}
2 changes: 1 addition & 1 deletion next/src/app/(component)/color/page.jsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// project imports
import ComponentColor from 'views/components-overview/color';
import ComponentColor from "views/components-overview/Color";

// ===============================|| COMPONENTS - COLOR ||=============================== //

Expand Down
2 changes: 1 addition & 1 deletion next/src/app/(component)/shadows/page.jsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// project imports
import ComponentShadow from 'views/components-overview/shadows';
import ComponentShadow from "views/components-overview/Shadows";

// ============================|| COMPONENTS - SHADOW ||============================ //

Expand Down
2 changes: 1 addition & 1 deletion next/src/app/(component)/typography/page.jsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// project imports
import ComponentTypography from 'views/components-overview/typography';
import ComponentTypography from "views/components-overview/Typography";

// ==============================|| COMPONENTS - TYPOGRAPHY ||============================== //

Expand Down
Loading
Loading