reafactor: converted the entire thing into a nextjs app

This commit is contained in:
2026-01-13 18:59:25 +00:00
parent 562e1a7d0d
commit 91fc911523
236 changed files with 12171 additions and 1443 deletions

View File

@@ -4,19 +4,25 @@
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview"
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint"
},
"dependencies": {
"@tailwindcss/postcss": "^4.1.18",
"autoprefixer": "^10.4.23",
"lucide-react": "^0.562.0",
"next": "^16.1.1",
"postcss": "^8.5.6",
"react": "^19.2.3",
"react-dom": "^19.2.3",
"lucide-react": "^0.562.0"
"tailwindcss": "^4.1.18"
},
"devDependencies": {
"@types/node": "^22.14.0",
"@vitejs/plugin-react": "^5.0.0",
"typescript": "~5.8.2",
"vite": "^6.2.0"
"@types/react": "^19.2.8",
"@types/react-dom": "^19.2.3",
"typescript": "~5.8.2"
}
}