diff --git a/frontend/package.json b/frontend/package.json index ad8476c..14558ad 100644 --- a/frontend/package.json +++ b/frontend/package.json @@ -13,26 +13,26 @@ }, "dependencies": { "@radix-ui/react-slot": "^1.1.2", - "@radix-ui/react-toast": "^1.2.6", + "@radix-ui/react-toast": "^1.2.14", "class-variance-authority": "^0.7.1", "clsx": "^2.1.1", - "lucide-react": "^0.475.0", - "react": "^19.0.0", - "react-dom": "^19.0.0", - "react-router-dom": "^7.1.5", - "tailwind-merge": "^3.0.1", + "lucide-react": "^0.511.0", + "react": "^19.1.0", + "react-dom": "^19.1.0", + "react-router-dom": "^7.6.0", + "tailwind-merge": "^3.3.0", "tailwindcss-animate": "^1.0.7" }, "devDependencies": { "@types/node": "^22.13.4", - "@types/react": "^19.0.0", - "@types/react-dom": "^19.0.0", - "@vitejs/plugin-react": "^4.2.1", - "autoprefixer": "^10.4.17", - "postcss": "^8.4.35", - "prettier": "^3.2.5", - "tailwindcss": "^3.4.1", - "typescript": "^4.9.5", - "vite": "^5.1.1" + "@types/react": "^19.0.10", + "@types/react-dom": "^19.0.7", + "@vitejs/plugin-react": "^4.3.1", + "autoprefixer": "^10.4.18", + "postcss": "^8.4.38", + "prettier": "^3.4.2", + "tailwindcss": "^3.4.3", + "typescript": "^5.4.5", + "vite": "^5.2.12" } } diff --git a/frontend/src/components/ui/button.tsx b/frontend/src/components/ui/Button.tsx similarity index 100% rename from frontend/src/components/ui/button.tsx rename to frontend/src/components/ui/Button.tsx diff --git a/frontend/src/components/ui/ThemeToggle.tsx b/frontend/src/components/ui/ThemeToggle.tsx index 8750f83..c83c7b9 100644 --- a/frontend/src/components/ui/ThemeToggle.tsx +++ b/frontend/src/components/ui/ThemeToggle.tsx @@ -1,5 +1,5 @@ import { MoonIcon, SunIcon } from 'lucide-react' -import { Button } from '../ui/Button' +import { Button } from './Button' import { useAppState, useAppDispatch, setTheme } from '../../context/AppContext' import { Theme } from '../../types' diff --git a/frontend/src/pages/Home.tsx b/frontend/src/pages/Home.tsx index 778391d..a92db8d 100644 --- a/frontend/src/pages/Home.tsx +++ b/frontend/src/pages/Home.tsx @@ -4,7 +4,7 @@ import { CircleCheck, Sparkles } from 'lucide-react' import { ErrorBoundary } from '../features/health/ErrorBoundary' import { HealthStatus } from '../features/health/HealthStatus' import { LoadingStatus } from '../features/health/LoadingStatus' -import { Button } from '../components/ui/button' +import { Button } from '../components/ui/Button' type FeatureItem = { id: string