diff --git a/public/manifest.webmanifest b/public/manifest.webmanifest index c1658b8..493f190 100644 --- a/public/manifest.webmanifest +++ b/public/manifest.webmanifest @@ -5,8 +5,8 @@ "lang": "it", "start_url": "/", "display": "standalone", - "background_color": "#fafafb", - "theme_color": "#fafafb", + "background_color": "#e4e8ed", + "theme_color": "#e4e8ed", "orientation": "portrait", "icons": [ { diff --git a/src/components/crapp/BottomNav.tsx b/src/components/crapp/BottomNav.tsx index bb52fd3..37b0331 100644 --- a/src/components/crapp/BottomNav.tsx +++ b/src/components/crapp/BottomNav.tsx @@ -1,5 +1,7 @@ import { Link } from "@tanstack/react-router"; import { CalendarDays, Home, Trophy, Users } from "lucide-react"; +import { motion, useReducedMotion } from "motion/react"; +import { molla } from "@/lib/molla"; // Quattro voci e non cinque: il profilo sta in alto a destra // nell'intestazione di ogni pagina, dove lo cerca chi arriva da iOS. @@ -11,6 +13,8 @@ const items = [ ] as const; export function BottomNav() { + const ridotto = useReducedMotion(); + return (