Refactor code structure and remove redundant sections for improved readability and maintainability

This commit is contained in:
Puechberty Arthur
2026-02-23 03:57:05 +01:00
parent 5be8966d66
commit 6760a523e4
27 changed files with 2025 additions and 1087 deletions
+8 -5
View File
@@ -1,16 +1,19 @@
{
"name": "links",
"version": "1.0.0",
"description": "A web app to distribute personal social media links",
"main": "app.js",
"description": "Une page de liens moderne avec Next.js",
"main": "next.config.js",
"scripts": {
"start": "node app.js",
"dev": "node app.js"
"dev": "node ./node_modules/next/dist/bin/next dev",
"build": "node ./node_modules/next/dist/bin/next build",
"start": "node ./node_modules/next/dist/bin/next start"
},
"keywords": ["links", "social", "profile"],
"author": "arthur-pbty",
"license": "MIT",
"dependencies": {
"express": "^4.18.2"
"next": "^16.0.0",
"react": "^19.0.0",
"react-dom": "^19.0.0"
}
}