diff --git a/.dockerignore b/.dockerignore
index 603ee91..3a98b5a 100644
--- a/.dockerignore
+++ b/.dockerignore
@@ -1,6 +1 @@
-node_modules
-dist
-.git
-.env
-mysql_data
-.DS_Store
+��^
\ No newline at end of file
diff --git a/Dockerfile b/Dockerfile
index 8cd331a..e69de29 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -1,29 +0,0 @@
-# Stage 1: Build
-FROM node:20-alpine as build
-
-WORKDIR /app
-
-# Copia i file di dipendenze
-COPY package*.json ./
-
-# Installa le dipendenze
-RUN npm install
-
-# Copia tutto il codice sorgente
-COPY . .
-
-# Esegui la build di produzione (crea la cartella dist)
-RUN npm run build
-
-# Stage 2: Serve con Nginx
-FROM nginx:alpine
-
-# Copia i file compilati dalla build precedente alla cartella di Nginx
-COPY --from=build /app/dist /usr/share/nginx/html
-
-# Copia la configurazione custom di Nginx
-COPY nginx.conf /etc/nginx/conf.d/default.conf
-
-EXPOSE 80
-
-CMD ["nginx", "-g", "daemon off;"]
diff --git a/components/Layout.tsx b/components/Layout.tsx
index 045ad98..b9c4235 100644
--- a/components/Layout.tsx
+++ b/components/Layout.tsx
@@ -12,7 +12,7 @@ export const Layout: React.FC = () => {
`flex items-center gap-3 px-4 py-3 rounded-lg transition-all duration-200 ${
isActive
? 'bg-blue-600 text-white shadow-md'
- : 'text-slate-600 hover:bg-slate-100'
+ : 'text-slate-600 hover:text-slate-900 hover:bg-slate-100'
}`;
const closeMenu = () => setIsMobileMenuOpen(false);
@@ -66,12 +66,10 @@ export const Layout: React.FC = () => {
Famiglie
- {isAdmin && (
-