Skip to content
Open
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
717 changes: 574 additions & 143 deletions README.md

Large diffs are not rendered by default.

6 changes: 5 additions & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,11 @@
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Vite + React + TS</title>
<meta
name="description"
content="Nice Gadgets store - Shop for phones, tablets, and accessories"
/>
<title>Nice Gadgets store</title>
</head>
<body>
<div id="root"></div>
Expand Down
234 changes: 132 additions & 102 deletions package-lock.json

Large diffs are not rendered by default.

4 changes: 3 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,16 @@
"@fortawesome/fontawesome-free": "^6.5.2",
"bulma": "^1.0.1",
"classnames": "^2.5.1",
"i18next": "^25.8.14",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-i18next": "^16.5.5",
Comment on lines +12 to +15
Copy link

Copilot AI Mar 6, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The package.json adds i18next and react-i18next as dependencies, but none of the source files in this PR use them. Looking through all the changed files, there are no imports of i18next or react-i18next. These unused dependencies increase bundle size unnecessarily. If internationalization is planned for the future, they should be added in a dedicated PR when they are actually implemented.

Suggested change
"i18next": "^25.8.14",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-i18next": "^16.5.5",
"react": "^18.3.1",
"react-dom": "^18.3.1",

Copilot uses AI. Check for mistakes.
"react-router-dom": "^6.25.1",
"react-transition-group": "^4.4.5"
},
"devDependencies": {
"@cypress/react18": "^2.0.1",
"@mate-academy/scripts": "^1.8.5",
"@mate-academy/scripts": "^2.1.3",
"@mate-academy/students-ts-config": "*",
"@mate-academy/stylelint-config": "*",
"@types/node": "^20.14.10",
Expand Down
Loading
Loading